public static enum EventTransfer.Result extends java.lang.Enum<EventTransfer.Result>
Modifier and Type | Method and Description |
---|---|
static EventTransfer.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventTransfer.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTransfer.Result UNDEFINED
public static final EventTransfer.Result START
public static final EventTransfer.Result OK
public static final EventTransfer.Result REFUSED
public static final EventTransfer.Result FAIL
public static EventTransfer.Result[] values()
for (EventTransfer.Result c : EventTransfer.Result.values()) System.out.println(c);
public static EventTransfer.Result 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 null