public static enum TAssignStmt.AssignType extends Enum<TAssignStmt.AssignType>
Enum Constant and Description |
---|
cursorAssignment |
normal |
resultsetAssignment |
variableAssignment |
Modifier and Type | Method and Description |
---|---|
static TAssignStmt.AssignType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TAssignStmt.AssignType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TAssignStmt.AssignType normal
public static final TAssignStmt.AssignType variableAssignment
public static final TAssignStmt.AssignType cursorAssignment
public static final TAssignStmt.AssignType resultsetAssignment
public static TAssignStmt.AssignType[] values()
for (TAssignStmt.AssignType c : TAssignStmt.AssignType.values()) System.out.println(c);
public static TAssignStmt.AssignType 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 null