public enum MultipleGraphsPlacement extends java.lang.Enum<MultipleGraphsPlacement>
Enum Constant and Description |
---|
Horizontal
Indicates that graphs should be placed in a row.
|
MinimalArea
Indicates that graphs should be placed so that they cover minimal area.
|
Vertical
Indicates that graphs should be placed in a column.
|
Modifier and Type | Method and Description |
---|---|
static MultipleGraphsPlacement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultipleGraphsPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultipleGraphsPlacement Vertical
public static final MultipleGraphsPlacement Horizontal
public static final MultipleGraphsPlacement MinimalArea
public static MultipleGraphsPlacement[] values()
for (MultipleGraphsPlacement c : MultipleGraphsPlacement.values()) System.out.println(c);
public static MultipleGraphsPlacement 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