protected static enum PropsParser.Operator extends java.lang.Enum<PropsParser.Operator>
| Enum Constant and Description |
|---|
ASSIGN |
COPY |
QUICK_APPEND |
| Modifier and Type | Method and Description |
|---|---|
static PropsParser.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropsParser.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropsParser.Operator ASSIGN
public static final PropsParser.Operator QUICK_APPEND
public static final PropsParser.Operator COPY
public static PropsParser.Operator[] values()
for (PropsParser.Operator c : PropsParser.Operator.values()) System.out.println(c);
public static PropsParser.Operator 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 nullCopyright © 2003-present Jodd Team