public enum IceComponentState extends java.lang.Enum<IceComponentState>
Enum Constant and Description |
---|
CONNECTED |
CONNECTING |
DISCONNECTED |
FAILED |
GATHERING |
READY |
Modifier and Type | Method and Description |
---|---|
static IceComponentState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IceComponentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IceComponentState DISCONNECTED
public static final IceComponentState GATHERING
public static final IceComponentState CONNECTING
public static final IceComponentState CONNECTED
public static final IceComponentState READY
public static final IceComponentState FAILED
public static IceComponentState[] values()
for (IceComponentState c : IceComponentState.values()) System.out.println(c);
public static IceComponentState 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