public enum ValuesType extends java.lang.Enum<ValuesType>
| Modifier and Type | Method and Description |
|---|---|
static ValuesType |
fromValue(java.lang.String value) |
java.lang.String |
value() |
static ValuesType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValuesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValuesType STRING
public static final ValuesType NUMBER
public static final ValuesType TIME
public static final ValuesType CATALOG
public static ValuesType[] values()
for (ValuesType c : ValuesType.values()) System.out.println(c);
public static ValuesType 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 nullpublic java.lang.String value()
public static ValuesType fromValue(java.lang.String value)