public static enum BaseType.Type extends Enum<BaseType.Type>
| Enum Constant and Description |
|---|
BINARY |
BOOL |
BYTE |
DOUBLE |
I16 |
I32 |
I64 |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static BaseType.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseType.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseType.Type BOOL
public static final BaseType.Type BYTE
public static final BaseType.Type I16
public static final BaseType.Type I32
public static final BaseType.Type I64
public static final BaseType.Type DOUBLE
public static final BaseType.Type STRING
public static final BaseType.Type BINARY
public static BaseType.Type[] values()
for (BaseType.Type c : BaseType.Type.values()) System.out.println(c);
public static BaseType.Type 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 © 2012-2017. All Rights Reserved.