public static enum LogicalPort.Direction extends Enum<LogicalPort.Direction>
Enum Constant and Description |
---|
INPUT
The port is an input port
|
OUTPUT
The port is an output port
|
Modifier and Type | Method and Description |
---|---|
static LogicalPort.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalPort.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalPort.Direction INPUT
public static final LogicalPort.Direction OUTPUT
public static LogicalPort.Direction[] values()
for (LogicalPort.Direction c : LogicalPort.Direction.values()) System.out.println(c);
public static LogicalPort.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 nullCopyright © 2019 Actian Corporation. All rights reserved.