public enum ConfigurationStatus extends Enum<ConfigurationStatus>
Enum Constant and Description |
---|
CONFIGURATION_FAILED
Configuration state indicating the task failed
|
IN_PROCESS
Configuration state indicating the task is in process
|
NOT_STARTED
Configuration state indicating the task has not been started
|
SUCCESSFULLY_COMPLETED
Configuration state indicating the task completed successfully
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationStatus NOT_STARTED
public static final ConfigurationStatus IN_PROCESS
public static final ConfigurationStatus SUCCESSFULLY_COMPLETED
public static final ConfigurationStatus CONFIGURATION_FAILED
public static ConfigurationStatus[] values()
for (ConfigurationStatus c : ConfigurationStatus.values()) System.out.println(c);
public static ConfigurationStatus 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
© 2015 ZIH Corp. All Rights Reserved.