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