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