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