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