public enum ESelectModifier extends Enum<ESelectModifier>
Enum Constant and Description |
---|
ALL |
DISTINCT |
DISTINCTROW |
HIGH_PRIORITY |
SQL_BIG_RESULT |
SQL_BUFFER_RESULT |
SQL_CACHE |
SQL_CALC_FOUND_ROWS |
SQL_NO_CACHE |
SQL_SMALL_RESULT |
STRAIGHT_JOIN |
Modifier and Type | Method and Description |
---|---|
static ESelectModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ESelectModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ESelectModifier HIGH_PRIORITY
public static final ESelectModifier STRAIGHT_JOIN
public static final ESelectModifier SQL_SMALL_RESULT
public static final ESelectModifier SQL_BIG_RESULT
public static final ESelectModifier SQL_BUFFER_RESULT
public static final ESelectModifier SQL_NO_CACHE
public static final ESelectModifier SQL_CALC_FOUND_ROWS
public static final ESelectModifier SQL_CACHE
public static final ESelectModifier ALL
public static final ESelectModifier DISTINCT
public static final ESelectModifier DISTINCTROW
public static ESelectModifier[] values()
for (ESelectModifier c : ESelectModifier.values()) System.out.println(c);
public static ESelectModifier 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 null