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