public static enum QueryBuilder.JoinWhereOperation extends Enum<QueryBuilder.JoinWhereOperation>
Enum Constant and Description |
---|
AND
combine the two WHERE parts of the JOINed queries with an AND
|
OR
combine the two WHERE parts of the JOINed queries with an OR
|
Modifier and Type | Method and Description |
---|---|
static QueryBuilder.JoinWhereOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryBuilder.JoinWhereOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryBuilder.JoinWhereOperation AND
public static final QueryBuilder.JoinWhereOperation OR
public static QueryBuilder.JoinWhereOperation[] values()
for (QueryBuilder.JoinWhereOperation c : QueryBuilder.JoinWhereOperation.values()) System.out.println(c);
public static QueryBuilder.JoinWhereOperation 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 nullThis documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.