public static enum Variant.Type extends java.lang.Enum<Variant.Type>
Enum Constant and Description |
---|
Bool |
Char |
Double |
Float |
Int |
Invalid |
LongLong |
Short |
String |
Modifier and Type | Method and Description |
---|---|
static Variant.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Variant.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Variant.Type Invalid
public static final Variant.Type Bool
public static final Variant.Type Char
public static final Variant.Type Short
public static final Variant.Type Int
public static final Variant.Type LongLong
public static final Variant.Type Float
public static final Variant.Type Double
public static final Variant.Type String
public static Variant.Type[] values()
for (Variant.Type c : Variant.Type.values()) System.out.println(c);
public static Variant.Type 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 null