public static enum QueryBuilder.QueryAction extends java.lang.Enum<QueryBuilder.QueryAction>
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
is(java.lang.String str)  | 
static QueryBuilder.QueryAction | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static QueryBuilder.QueryAction[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final QueryBuilder.QueryAction SELECT
public static final QueryBuilder.QueryAction DELETE
public static final QueryBuilder.QueryAction UPDATE
public static QueryBuilder.QueryAction[] values()
for (QueryBuilder.QueryAction c : QueryBuilder.QueryAction.values()) System.out.println(c);
public static QueryBuilder.QueryAction 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 boolean is(java.lang.String str)