public static enum BeckhoffRoof.Action extends Enum<BeckhoffRoof.Action>
| Enum Constant and Description |
|---|
LOCK |
OPEN |
OPENTRIGGER |
SHUT |
SHUTTRIGGER |
| Modifier and Type | Method and Description |
|---|---|
static BeckhoffRoof.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeckhoffRoof.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeckhoffRoof.Action OPEN
public static final BeckhoffRoof.Action SHUT
public static final BeckhoffRoof.Action LOCK
public static final BeckhoffRoof.Action OPENTRIGGER
public static final BeckhoffRoof.Action SHUTTRIGGER
public static BeckhoffRoof.Action[] values()
for (BeckhoffRoof.Action c : BeckhoffRoof.Action.values()) System.out.println(c);
public static BeckhoffRoof.Action 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 null