public static enum StatusGetter.Status extends Enum<StatusGetter.Status>
| Enum Constant and Description | 
|---|
CONNECTION_REFUSED  | 
NOT_RUNNING  | 
PARTIALLY_RUNNING  | 
RUNNING  | 
UNKNOWN  | 
| Modifier and Type | Method and Description | 
|---|---|
static StatusGetter.Status | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static StatusGetter.Status[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final StatusGetter.Status UNKNOWN
public static final StatusGetter.Status RUNNING
public static final StatusGetter.Status PARTIALLY_RUNNING
public static final StatusGetter.Status NOT_RUNNING
public static final StatusGetter.Status CONNECTION_REFUSED
public static StatusGetter.Status[] values()
for (StatusGetter.Status c : StatusGetter.Status.values()) System.out.println(c);
public static StatusGetter.Status 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 nullCopyright © 2020. All rights reserved.