public enum PolylineRouting extends java.lang.Enum<PolylineRouting>
Enum Constant and Description |
---|
AllOrthogonal
Keep all segments orthogonal to node's sides and each other.
|
EndSegmentsOrthogonal
Keep the end segments orthogonal to node's sides, and allow interior segments to be inclined.
|
UnrestrictedInclined
Allow any segment to be inclined by non-multiple of 90 angles.
|
Modifier and Type | Method and Description |
---|---|
static PolylineRouting |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PolylineRouting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolylineRouting UnrestrictedInclined
public static final PolylineRouting EndSegmentsOrthogonal
public static final PolylineRouting AllOrthogonal
public static PolylineRouting[] values()
for (PolylineRouting c : PolylineRouting.values()) System.out.println(c);
public static PolylineRouting 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