public static enum Primitives.En extends java.lang.Enum<Primitives.En>
| Modifier and Type | Field and Description |
|---|---|
int |
id |
| Modifier and Type | Method and Description |
|---|---|
static Primitives.En |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Primitives.En[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Primitives.En HI
public static final Primitives.En THERE
public static Primitives.En[] values()
for (Primitives.En c : Primitives.En.values()) System.out.println(c);
public static Primitives.En valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2011-2014. All Rights Reserved.