public enum TowerLayout extends java.lang.Enum<TowerLayout>
Enum Constant and Description |
---|
Interleave
Segments from the two series are interleaved.
|
Stack
Segments in each series are stacked on top of each other.
|
Timeline
Segments are positioned proportionally to their time value.
|
Modifier and Type | Method and Description |
---|---|
static TowerLayout |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TowerLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TowerLayout Interleave
public static final TowerLayout Stack
public static final TowerLayout Timeline
public static TowerLayout[] values()
for (TowerLayout c : TowerLayout.values()) System.out.println(c);
public static TowerLayout 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