public enum VariantType extends java.lang.Enum<VariantType>
Enum Constant and Description |
---|
Binary |
Boolean |
Byte |
Double |
Float |
Int |
List |
Long |
Map |
Null |
Object |
Set |
Short |
String |
Struct |
Vector |
Modifier and Type | Method and Description |
---|---|
abstract Declaration |
createDeclaration(Declaration... args) |
static VariantType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VariantType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VariantType Null
public static final VariantType Boolean
public static final VariantType Byte
public static final VariantType Short
public static final VariantType Int
public static final VariantType Long
public static final VariantType Float
public static final VariantType Double
public static final VariantType String
public static final VariantType Binary
public static final VariantType List
public static final VariantType Vector
public static final VariantType Set
public static final VariantType Map
public static final VariantType Struct
public static final VariantType Object
public static VariantType[] values()
for (VariantType c : VariantType.values()) System.out.println(c);
public static VariantType 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 abstract Declaration createDeclaration(Declaration... args)