Enum Selector.Kind
- java.lang.Object
-
- java.lang.Enum<Selector.Kind>
-
- org.apache.cassandra.cql3.selection.Selector.Kind
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Selector.Kind>
- Enclosing class:
- Selector
public static enum Selector.Kind extends java.lang.Enum<Selector.Kind>
TheSelector
kinds.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Selector.Kind
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Selector.Kind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SIMPLE_SELECTOR
public static final Selector.Kind SIMPLE_SELECTOR
-
TERM_SELECTOR
public static final Selector.Kind TERM_SELECTOR
-
WRITETIME_OR_TTL_SELECTOR
public static final Selector.Kind WRITETIME_OR_TTL_SELECTOR
-
LIST_SELECTOR
public static final Selector.Kind LIST_SELECTOR
-
SET_SELECTOR
public static final Selector.Kind SET_SELECTOR
-
MAP_SELECTOR
public static final Selector.Kind MAP_SELECTOR
-
TUPLE_SELECTOR
public static final Selector.Kind TUPLE_SELECTOR
-
USER_TYPE_SELECTOR
public static final Selector.Kind USER_TYPE_SELECTOR
-
FIELD_SELECTOR
public static final Selector.Kind FIELD_SELECTOR
-
SCALAR_FUNCTION_SELECTOR
public static final Selector.Kind SCALAR_FUNCTION_SELECTOR
-
AGGREGATE_FUNCTION_SELECTOR
public static final Selector.Kind AGGREGATE_FUNCTION_SELECTOR
-
ELEMENT_SELECTOR
public static final Selector.Kind ELEMENT_SELECTOR
-
SLICE_SELECTOR
public static final Selector.Kind SLICE_SELECTOR
-
VECTOR_SELECTOR
public static final Selector.Kind VECTOR_SELECTOR
-
-
Method Detail
-
values
public static Selector.Kind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Selector.Kind c : Selector.Kind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Selector.Kind valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-