public static enum CustomerState.Status extends Enum<CustomerState.Status>
Enum Constant and Description |
---|
FAILED |
NOT_STARTED |
STARTING |
STOPPING |
UP |
Modifier and Type | Method and Description |
---|---|
static CustomerState.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomerState.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomerState.Status NOT_STARTED
public static final CustomerState.Status STARTING
public static final CustomerState.Status FAILED
public static final CustomerState.Status UP
public static final CustomerState.Status STOPPING
public static CustomerState.Status[] values()
for (CustomerState.Status c : CustomerState.Status.values()) System.out.println(c);
public static CustomerState.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 null Documentation Feedback
Copyright 2011 - 2018 Micro Focus or one of its affiliates.