public enum ConferenceStatus extends java.lang.Enum<ConferenceStatus>
| Enum Constant and Description |
|---|
COMPLETED |
IN_PROGRESS |
INIT |
| Modifier and Type | Method and Description |
|---|---|
static ConferenceStatus |
deserializeXML(java.lang.String string) |
java.lang.String |
toString() |
static ConferenceStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConferenceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConferenceStatus INIT
public static final ConferenceStatus IN_PROGRESS
public static final ConferenceStatus COMPLETED
public static ConferenceStatus[] values()
for (ConferenceStatus c : ConferenceStatus.values()) System.out.println(c);
public static ConferenceStatus 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<ConferenceStatus>public static ConferenceStatus deserializeXML(java.lang.String string) throws JiBXParseException
JiBXParseException