protected static enum StatementBuilder.WhereOperation extends Enum<StatementBuilder.WhereOperation>
Modifier and Type | Method and Description |
---|---|
void |
appendAfter(StringBuilder sb)
Append the necessary operators after the where statement.
|
void |
appendBefore(StringBuilder sb)
Append the necessary operators before the where statement.
|
static StatementBuilder.WhereOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementBuilder.WhereOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementBuilder.WhereOperation FIRST
public static final StatementBuilder.WhereOperation AND
public static final StatementBuilder.WhereOperation OR
public static StatementBuilder.WhereOperation[] values()
for (StatementBuilder.WhereOperation c : StatementBuilder.WhereOperation.values()) System.out.println(c);
public static StatementBuilder.WhereOperation 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 void appendBefore(StringBuilder sb)
public void appendAfter(StringBuilder sb)
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.