public static enum SqlProcessor.FeatureType extends Enum<SqlProcessor.FeatureType>
| Enum Constant and Description |
|---|
BOPT
Boolean option
|
IOPT
Integer option
|
LOPT
Long option
|
MOPT
Map option
|
OPT
String option
|
SOPT
Short option
|
| Modifier and Type | Method and Description |
|---|---|
static SqlProcessor.FeatureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlProcessor.FeatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlProcessor.FeatureType OPT
public static final SqlProcessor.FeatureType LOPT
public static final SqlProcessor.FeatureType IOPT
public static final SqlProcessor.FeatureType SOPT
public static final SqlProcessor.FeatureType BOPT
public static final SqlProcessor.FeatureType MOPT
public static SqlProcessor.FeatureType[] values()
for (SqlProcessor.FeatureType c : SqlProcessor.FeatureType.values()) System.out.println(c);
public static SqlProcessor.FeatureType 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 nullCopyright © 2016. All rights reserved.