public enum ClipModeTarget extends java.lang.Enum<ClipModeTarget>
Enum Constant and Description |
---|
DataRange
ClipModeTarget.DataRange means that you can pan within DataRange of axis which does not include GrowBy factor.
|
MaximumRange
ClipModeTarget.MaximumRange means that you can pan within MaximumRange of axis which includes GrowBy factor.
|
VisibleRangeLimit
ClipModeTarget.VisibleRangeLimit means that you can pan within VisibleRangeLimit of axis.
|
Modifier and Type | Method and Description |
---|---|
static ClipModeTarget |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClipModeTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClipModeTarget MaximumRange
public static final ClipModeTarget DataRange
public static final ClipModeTarget VisibleRangeLimit
public static ClipModeTarget[] values()
for (ClipModeTarget c : ClipModeTarget.values()) System.out.println(c);
public static ClipModeTarget 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