public enum DataProviderState extends Enum<DataProviderState> implements Serializable
| Enum Constant and Description |
|---|
ALARM
The hardware is online, successfully read, the data validator validates
it at ALARM.
|
DISABLED
The hardware is online but it is not being read.
|
NOMINAL
The hardware is online, successfully read and validated by the
DataValidator.
|
NOT_VALIDATED
The hardware is online, successfully read, and the data validator is
disabled.
|
OFF_LINE
The hardware device is unreachable.
|
WARNING
The hardware is online, successfully read, the data validator validates
it at WARNING.
|
| Modifier and Type | Method and Description |
|---|---|
static DataProviderState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataProviderState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataProviderState OFF_LINE
public static final DataProviderState DISABLED
public static final DataProviderState NOT_VALIDATED
public static final DataProviderState NOMINAL
public static final DataProviderState WARNING
public static final DataProviderState ALARM
public static DataProviderState[] values()
for (DataProviderState c : DataProviderState.values()) System.out.println(c);
public static DataProviderState 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 © 2021 LSST. All rights reserved.