|
JBoss Marshalling 1.4.3.Final | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Kind>
org.jboss.marshalling.util.Kind
public enum Kind

The kind of field.
| Enum Constant Summary | |
|---|---|
BOOLEAN
Field of type boolean. |
|
BYTE
Field of type byte. |
|
CHAR
Field of type char. |
|
DOUBLE
Field of type double. |
|
FLOAT
Field of type float. |
|
INT
Field of type int. |
|
LONG
Field of type long. |
|
OBJECT
Field of object type. |
|
SHORT
Field of type short. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Kind BOOLEAN
boolean.
public static final Kind BYTE
byte.
public static final Kind CHAR
char.
public static final Kind DOUBLE
double.
public static final Kind FLOAT
float.
public static final Kind INT
int.
public static final Kind LONG
long.
public static final Kind OBJECT
public static final Kind SHORT
short.
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
JBoss Marshalling 1.4.3.Final | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||