public static enum ConnectionStateEvent.ConnectionState extends java.lang.Enum<ConnectionStateEvent.ConnectionState>
Enum Constant and Description |
---|
CONNECT |
DISCONNECT |
Modifier and Type | Method and Description |
---|---|
static ConnectionStateEvent.ConnectionState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionStateEvent.ConnectionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionStateEvent.ConnectionState CONNECT
public static final ConnectionStateEvent.ConnectionState DISCONNECT
public static ConnectionStateEvent.ConnectionState[] values()
for (ConnectionStateEvent.ConnectionState c : ConnectionStateEvent.ConnectionState.values()) System.out.println(c);
public static ConnectionStateEvent.ConnectionState 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 2013 Michal Turek, AnotherFSM.