public enum JsonNodeValueResolver extends Enum<JsonNodeValueResolver> implements ValueResolver
JsonNode.| Enum Constant and Description |
|---|
INSTANCE
The singleton instance.
|
UNRESOLVED| Modifier and Type | Method and Description |
|---|---|
Set<Map.Entry<String,Object>> |
propertySet(Object context) |
Object |
resolve(Object context) |
Object |
resolve(Object context,
String name) |
static JsonNodeValueResolver |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonNodeValueResolver[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfdefaultValueResolverspublic static final JsonNodeValueResolver INSTANCE
public static JsonNodeValueResolver[] values()
for (JsonNodeValueResolver c : JsonNodeValueResolver.values()) System.out.println(c);
public static JsonNodeValueResolver valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic Object resolve(Object context, String name)
resolve in interface ValueResolverpublic Object resolve(Object context)
resolve in interface ValueResolverpublic Set<Map.Entry<String,Object>> propertySet(Object context)
propertySet in interface ValueResolverCopyright © 2022. All rights reserved.