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