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