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