public static enum ConnectorAttribute.Direction extends Enum<ConnectorAttribute.Direction>
Enum Constant and Description |
---|
INCOMING |
INCOMING_AND_OUTGOING |
OUTGOING |
Modifier and Type | Method and Description |
---|---|
static ConnectorAttribute.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectorAttribute.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectorAttribute.Direction INCOMING
public static final ConnectorAttribute.Direction OUTGOING
public static final ConnectorAttribute.Direction INCOMING_AND_OUTGOING
public static ConnectorAttribute.Direction[] values()
for (ConnectorAttribute.Direction c : ConnectorAttribute.Direction.values()) System.out.println(c);
public static ConnectorAttribute.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 © 2018–2021 SmallRye. All rights reserved.