
public enum DoorChannelType extends Enum<DoorChannelType>
| Enum Constant and Description |
|---|
ANALOG
Real-valued quantity such as a temperature, represented as value*10 rounded to integer.
|
DIGITAL
A single-bit flag.
|
INTEGER
Integer-valued quantity.
|
| Modifier and Type | Method and Description |
|---|---|
static DoorChannelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DoorChannelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoorChannelType DIGITAL
public static final DoorChannelType ANALOG
public static final DoorChannelType INTEGER
public static DoorChannelType[] values()
for (DoorChannelType c : DoorChannelType.values()) System.out.println(c);
public static DoorChannelType 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 © 2017 LSST. All rights reserved.