public static enum PropertyNode.Type extends java.lang.Enum<PropertyNode.Type>
| Enum Constant and Description |
|---|
BRACKET |
DOT |
IDENTIFIER |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
format(java.lang.String input,
java.lang.Object value) |
static PropertyNode.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyNode.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
protected java.lang.String |
valueString(java.lang.Object value) |
public static final PropertyNode.Type DOT
public static final PropertyNode.Type IDENTIFIER
public static final PropertyNode.Type BRACKET
public static PropertyNode.Type[] values()
for (PropertyNode.Type c : PropertyNode.Type.values()) System.out.println(c);
public static PropertyNode.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullprotected java.lang.String valueString(java.lang.Object value)
public java.lang.String format(java.lang.String input,
java.lang.Object value)