public static enum FunctionArg.ArgType extends java.lang.Enum<FunctionArg.ArgType>
Enum Constant and Description |
---|
FIELD
A field argument.
|
FUNCTION
A function argument.
|
LITERAL
A literal argument.
|
UNPARSED
An argument that cannot be parsed.
|
Modifier and Type | Method and Description |
---|---|
static FunctionArg.ArgType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FunctionArg.ArgType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionArg.ArgType LITERAL
public static final FunctionArg.ArgType FIELD
public static final FunctionArg.ArgType FUNCTION
public static final FunctionArg.ArgType UNPARSED
public static FunctionArg.ArgType[] values()
for (FunctionArg.ArgType c : FunctionArg.ArgType.values()) System.out.println(c);
public static FunctionArg.ArgType 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 null