public enum ColumnSpacingMode extends java.lang.Enum<ColumnSpacingMode>
Enum Constant and Description |
---|
FixedSize
Fixed size column mode.
|
MaxNonOverlapping
Max possible column size where columns don't overlap each other in regards to series data points.
|
Modifier and Type | Method and Description |
---|---|
static ColumnSpacingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColumnSpacingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnSpacingMode MaxNonOverlapping
public static final ColumnSpacingMode FixedSize
public static ColumnSpacingMode[] values()
for (ColumnSpacingMode c : ColumnSpacingMode.values()) System.out.println(c);
public static ColumnSpacingMode 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