public static enum Sql.BuildingBlock extends java.lang.Enum<Sql.BuildingBlock>
Enum Constant and Description |
---|
BRACKET_CLOSE |
BRACKET_OPEN |
COMMA |
EQUAL |
GREATER_OR_EQUAL |
GREATER_THAN |
LESS_OR_EQUAL |
LESS_THAN |
NOT_EQUAL |
SEMICOLON |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Sql.BuildingBlock |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Sql.BuildingBlock[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sql.BuildingBlock COMMA
public static final Sql.BuildingBlock BRACKET_OPEN
public static final Sql.BuildingBlock BRACKET_CLOSE
public static final Sql.BuildingBlock EQUAL
public static final Sql.BuildingBlock NOT_EQUAL
public static final Sql.BuildingBlock GREATER_THAN
public static final Sql.BuildingBlock GREATER_OR_EQUAL
public static final Sql.BuildingBlock LESS_THAN
public static final Sql.BuildingBlock LESS_OR_EQUAL
public static final Sql.BuildingBlock SEMICOLON
public static Sql.BuildingBlock[] values()
for (Sql.BuildingBlock c : Sql.BuildingBlock.values()) System.out.println(c);
public static Sql.BuildingBlock 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Sql.BuildingBlock>