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