public static enum LiteralValue.LiteralType extends Enum<LiteralValue.LiteralType>
Enum Constant and Description |
---|
Boolean |
String |
Unsigned_Float |
Unsigned_Integer |
Unsigned_Large_Integer |
Modifier and Type | Method and Description |
---|---|
static LiteralValue.LiteralType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LiteralValue.LiteralType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiteralValue.LiteralType Boolean
public static final LiteralValue.LiteralType String
public static final LiteralValue.LiteralType Unsigned_Integer
public static final LiteralValue.LiteralType Unsigned_Float
public static final LiteralValue.LiteralType Unsigned_Large_Integer
public static LiteralValue.LiteralType[] values()
for (LiteralValue.LiteralType c : LiteralValue.LiteralType.values()) System.out.println(c);
public static LiteralValue.LiteralType 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 © 2014 Apache Software Foundation. All Rights Reserved.