public static enum TunnelController.TunnelState extends Enum<TunnelController.TunnelState>
| Enum Constant and Description |
|---|
DELAYED_START_PENDINGDelayed start pending. |
DESTROYEDDestroyed. |
DESTROYINGDestroying. |
RUNNINGRunning. |
START_ON_LOADStart on load. |
STARTINGStarting. |
STOPPEDStopped. |
STOPPINGStopping. |
| Modifier and Type | Method and Description |
|---|---|
static TunnelController.TunnelState | valueOf(String name)Returns the enum constant of this type with the specified name. |
static TunnelController.TunnelState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. |
public static final TunnelController.TunnelState DELAYED_START_PENDING
public static final TunnelController.TunnelState DESTROYED
public static final TunnelController.TunnelState DESTROYING
public static final TunnelController.TunnelState RUNNING
public static final TunnelController.TunnelState START_ON_LOAD
public static final TunnelController.TunnelState STARTING
public static final TunnelController.TunnelState STOPPED
public static final TunnelController.TunnelState STOPPING
public static TunnelController.TunnelState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static TunnelController.TunnelState[] values()
for (TunnelController.TunnelState c : TunnelController.TunnelState.values()) System.out.println(c);