public enum EssentialValueType extends Enum<EssentialValueType>
| Enum Constant and Description |
|---|
DATE |
DATETIME |
DECIMAL |
INTEGER |
PERMITTEDVALUE |
STRING |
| Modifier and Type | Method and Description |
|---|---|
String |
asCqlString(String value) |
String |
asXmlString(String value) |
static EssentialValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EssentialValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EssentialValueType DATE
public static final EssentialValueType DATETIME
public static final EssentialValueType DECIMAL
public static final EssentialValueType INTEGER
public static final EssentialValueType STRING
public static final EssentialValueType PERMITTEDVALUE
public static EssentialValueType[] values()
for (EssentialValueType c : EssentialValueType.values()) System.out.println(c);
public static EssentialValueType 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 © 2021 Samply Community. All rights reserved.