public static enum ASTStatement.StatementType extends Enum<ASTStatement.StatementType>
| Enum Constant and Description |
|---|
ASSIGN |
BIND |
FUNCTION |
INCLUDE |
NOOP |
PREFIX |
TYPE |
VARIABLE |
| Modifier and Type | Method and Description |
|---|---|
static ASTStatement.StatementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ASTStatement.StatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASTStatement.StatementType NOOP
public static final ASTStatement.StatementType BIND
public static final ASTStatement.StatementType ASSIGN
public static final ASTStatement.StatementType VARIABLE
public static final ASTStatement.StatementType TYPE
public static final ASTStatement.StatementType FUNCTION
public static final ASTStatement.StatementType INCLUDE
public static final ASTStatement.StatementType PREFIX
public static ASTStatement.StatementType[] values()
for (ASTStatement.StatementType c : ASTStatement.StatementType.values()) System.out.println(c);
public static ASTStatement.StatementType 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 nullCopyright © 2014 Quattor. All Rights Reserved.