public static enum Request2.MultiVecSelectType extends java.lang.Enum<Request2.MultiVecSelectType>
| Enum Constant and Description |
|---|
NAMES_ONLY
Treat a token as a column name no matter what (even if it looks like it is an integer).
|
NAMES_THEN_INDEXES
Treat a token as a column name.
|
| Modifier and Type | Method and Description |
|---|---|
static Request2.MultiVecSelectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Request2.MultiVecSelectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Request2.MultiVecSelectType NAMES_THEN_INDEXES
public static final Request2.MultiVecSelectType NAMES_ONLY
public static Request2.MultiVecSelectType[] values()
for (Request2.MultiVecSelectType c : Request2.MultiVecSelectType.values()) System.out.println(c);
public static Request2.MultiVecSelectType 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