public enum BridgeOrientationStyle extends Enum<BridgeOrientationStyle>
Enum Constant and Description |
---|
DOWN
The bridge points downwards.
|
FLOW_LEFT
The brige is drawn to the left of the flow of the path.
|
FLOW_RIGHT
The brige is drawn to the right of the flow of the path.
|
LEFT
The bridge points to the right.
|
NEGATIVE
The brige is drawn in the direction of the negative axes.
|
POSITIVE
The brige is drawn in the direction of the positive axes.
|
RIGHT
The bridge points to the left.
|
UP
The bridge points upwards.
|
Modifier and Type | Method and Description |
---|---|
static BridgeOrientationStyle |
fromOrdinal(int ordinal) |
int |
value() |
static BridgeOrientationStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BridgeOrientationStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BridgeOrientationStyle DOWN
public static final BridgeOrientationStyle FLOW_LEFT
public static final BridgeOrientationStyle FLOW_RIGHT
public static final BridgeOrientationStyle LEFT
public static final BridgeOrientationStyle NEGATIVE
public static final BridgeOrientationStyle POSITIVE
public static final BridgeOrientationStyle RIGHT
public static final BridgeOrientationStyle UP
public static final BridgeOrientationStyle fromOrdinal(int ordinal)
public int value()
public static BridgeOrientationStyle valueOf(String name)
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.public static BridgeOrientationStyle[] values()
for (BridgeOrientationStyle c : BridgeOrientationStyle.values()) System.out.println(c);