public enum WaterfallClipMode extends java.lang.Enum<WaterfallClipMode>
WaterfallRenderableSeries3D
Enum Constant and Description |
---|
AboveZero
All vertices that have Y values greater than zero will be clipped to zero.
|
BelowZero
All vertices that have Y values less than zero will be clipped to zero.
|
None
All vertices will appear as they are.
|
Modifier and Type | Method and Description |
---|---|
static WaterfallClipMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WaterfallClipMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WaterfallClipMode AboveZero
public static final WaterfallClipMode BelowZero
public static final WaterfallClipMode None
public static WaterfallClipMode[] values()
for (WaterfallClipMode c : WaterfallClipMode.values()) System.out.println(c);
public static WaterfallClipMode 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