public static enum Automation.Type extends java.lang.Enum<Automation.Type>
Enum Constant and Description |
---|
AREA |
AREA_BUS |
GENERAL |
GENERAL_BUS |
GROUP |
GROUP_BUS |
POINT_TO_POINT |
POINT_TO_POINT_BUS |
Modifier and Type | Method and Description |
---|---|
static Automation.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Automation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Automation.Type GENERAL
public static final Automation.Type GENERAL_BUS
public static final Automation.Type AREA
public static final Automation.Type AREA_BUS
public static final Automation.Type GROUP
public static final Automation.Type GROUP_BUS
public static final Automation.Type POINT_TO_POINT
public static final Automation.Type POINT_TO_POINT_BUS
public static Automation.Type[] values()
for (Automation.Type c : Automation.Type.values()) System.out.println(c);
public static Automation.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null