public static enum ASTOperation.OperationType extends Enum<ASTOperation.OperationType>
| Enum Constant and Description |
|---|
ASSIGN |
BIT_NOT |
DEFAULT |
DML |
FOR |
FOREACH |
FUNCTION |
HEREDOC |
IF |
LITERAL |
MINUS |
NOT |
PLUS |
VARIABLE |
WHILE |
WITH |
| Modifier and Type | Method and Description |
|---|---|
static ASTOperation.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ASTOperation.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASTOperation.OperationType DML
public static final ASTOperation.OperationType PLUS
public static final ASTOperation.OperationType MINUS
public static final ASTOperation.OperationType NOT
public static final ASTOperation.OperationType BIT_NOT
public static final ASTOperation.OperationType FUNCTION
public static final ASTOperation.OperationType ASSIGN
public static final ASTOperation.OperationType IF
public static final ASTOperation.OperationType WHILE
public static final ASTOperation.OperationType FOR
public static final ASTOperation.OperationType FOREACH
public static final ASTOperation.OperationType VARIABLE
public static final ASTOperation.OperationType WITH
public static final ASTOperation.OperationType DEFAULT
public static final ASTOperation.OperationType HEREDOC
public static final ASTOperation.OperationType LITERAL
public static ASTOperation.OperationType[] values()
for (ASTOperation.OperationType c : ASTOperation.OperationType.values()) System.out.println(c);
public static ASTOperation.OperationType 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.