public static enum ServiceDesc.ServiceStatus extends Enum<ServiceDesc.ServiceStatus>
| Enum Constant and Description |
|---|
ACTIVE |
MISSING |
NOT_RESPONDING |
PENDING |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ServiceDesc.ServiceStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceDesc.ServiceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceDesc.ServiceStatus UNKNOWN
public static final ServiceDesc.ServiceStatus ACTIVE
public static final ServiceDesc.ServiceStatus PENDING
public static final ServiceDesc.ServiceStatus NOT_RESPONDING
public static final ServiceDesc.ServiceStatus MISSING
public static ServiceDesc.ServiceStatus[] values()
for (ServiceDesc.ServiceStatus c : ServiceDesc.ServiceStatus.values()) System.out.println(c);
public static ServiceDesc.ServiceStatus 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 © 2017. All rights reserved.