public enum RangeClipMode extends java.lang.Enum<RangeClipMode>
IRange
Enum Constant and Description |
---|
Max
Allow clipping only at Max
|
Min
Allow clipping only at Min
|
MinMax
Allow clipping at Min and Max
|
Modifier and Type | Method and Description |
---|---|
static RangeClipMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RangeClipMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RangeClipMode MinMax
public static final RangeClipMode Max
public static final RangeClipMode Min
public static RangeClipMode[] values()
for (RangeClipMode c : RangeClipMode.values()) System.out.println(c);
public static RangeClipMode 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