public enum AstType extends Enum<AstType>
| Modifier and Type | Method and Description |
|---|---|
static AstType |
fromId(int id) |
int |
getId() |
static AstType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AstType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AstType AST_NOP
public static final AstType AST_ARRAY
public static final AstType AST_REGEXP
public static final AstType AST_THIS
public static final AstType AST_GLOBAL
public static final AstType AST_NOT
public static final AstType AST_AND
public static final AstType AST_OR
public static final AstType AST_TERNARY
public static final AstType AST_ADD
public static final AstType AST_SUB
public static final AstType AST_MUL
public static final AstType AST_DIV
public static final AstType AST_MOD
public static final AstType AST_USUB
public static final AstType AST_LT
public static final AstType AST_GT
public static final AstType AST_LE
public static final AstType AST_GE
public static final AstType AST_EQ
public static final AstType AST_NEQ
public static final AstType AST_REF
public static final AstType AST_CALL
public static final AstType AST_VAR
public static final AstType AST_IF
public static final AstType AST_FOR
public static final AstType AST_MACRO
public static final AstType AST_RETURN
public static final AstType AST_NODES
public static final AstType AST_NODELIST
public static final AstType AST_BOR
public static final AstType AST_BXOR
public static final AstType AST_BAND
public static final AstType AST_SUPPRESS
public static final AstType AST_BLS
public static final AstType AST_BRS
public static final AstType AST_BNOT
public static final AstType AST_BREAK
public static final AstType AST_CONTINUE
public static final AstType AST_WHILE
public static final AstType AST_T_NOP
public static final AstType AST_T_BREAK
public static final AstType AST_T_ARRAY
public static final AstType AST_VALUE_NODE
public static AstType[] values()
for (AstType c : AstType.values()) System.out.println(c);
public static AstType 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 nullpublic static AstType fromId(int id)
public int getId()
Copyright © 2017. All rights reserved.