public enum AxisSideClipping extends java.lang.Enum<AxisSideClipping>
Enum Constant and Description |
---|
Default
Default clipping is VisibleRange for X and Z Axis, and None for Y Axis
|
None
Clipping is disabled
|
VisibleRange
Renderable Series is clipped by visible range
|
Modifier and Type | Method and Description |
---|---|
static AxisSideClipping |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxisSideClipping[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisSideClipping Default
public static final AxisSideClipping None
public static final AxisSideClipping VisibleRange
public static AxisSideClipping[] values()
for (AxisSideClipping c : AxisSideClipping.values()) System.out.println(c);
public static AxisSideClipping 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