public enum SpacingMode extends java.lang.Enum<SpacingMode>
StackedColumnRenderableSeries
.Enum Constant and Description |
---|
Absolute
For setting spacing in pixels.
|
Relative
For setting spacing in fraction of column width.
|
Modifier and Type | Method and Description |
---|---|
static SpacingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SpacingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpacingMode Absolute
public static final SpacingMode Relative
public static SpacingMode[] values()
for (SpacingMode c : SpacingMode.values()) System.out.println(c);
public static SpacingMode 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