public enum ConfigurationState extends Enum<ConfigurationState> implements AgentState
| Enum Constant and Description |
|---|
CONFIGURED
The current configuration state is fully backed up by the configuration system.
|
CONFIGURING
The subsystem has been submitted one or more potential changes that
have not been applied yet.
|
DIRTY
The current configuration state has been modified and not saved yet.
|
UNCONFIGURED
The configuration system is unreachable.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfisLegal, isLegalpublic static final ConfigurationState CONFIGURED
public static final ConfigurationState DIRTY
public static final ConfigurationState CONFIGURING
public static final ConfigurationState UNCONFIGURED
public static ConfigurationState[] values()
for (ConfigurationState c : ConfigurationState.values()) System.out.println(c);
public static ConfigurationState 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 © 2015 LSST. All rights reserved.