public enum BasicTypeInfo extends Enum<BasicTypeInfo>
Enum Constant and Description |
---|
BOOLEAN |
BYTE |
CHAR |
DOUBLE |
DUMMY |
FLOAT |
INT |
LONG |
SHORT |
Modifier and Type | Method and Description |
---|---|
static BasicTypeInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasicTypeInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicTypeInfo DUMMY
public static final BasicTypeInfo BOOLEAN
public static final BasicTypeInfo CHAR
public static final BasicTypeInfo FLOAT
public static final BasicTypeInfo DOUBLE
public static final BasicTypeInfo BYTE
public static final BasicTypeInfo SHORT
public static final BasicTypeInfo INT
public static final BasicTypeInfo LONG
public static BasicTypeInfo[] values()
for (BasicTypeInfo c : BasicTypeInfo.values()) System.out.println(c);
public static BasicTypeInfo 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 © 2008-2012. All Rights Reserved.