public enum Field extends Enum<Field>
| Enum Constant and Description |
|---|
ALERT_HIGH |
ALERT_LOW |
DESCR |
HIGH |
LOW |
NAME |
UNITS |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isEditable() |
boolean |
isUpdatable() |
String |
toString() |
static Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Field NAME
public static final Field VALUE
public static final Field UNITS
public static final Field LOW
public static final Field ALERT_LOW
public static final Field HIGH
public static final Field ALERT_HIGH
public static final Field DESCR
public static Field[] values()
for (Field c : Field.values()) System.out.println(c);
public static Field 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 nullpublic boolean isUpdatable()
public boolean isEditable()
Copyright © 2018 LSST. All rights reserved.