public enum ClipMap extends Enum<ClipMap> implements Key
Enum Constant and Description |
---|
FALSE
Does not clip the area.
|
GRATICULE
Clip the area to graticule.
|
ITEMS
Clip the area to the items.
|
OUTLINE
Clip the area to outline.
|
OUTLINE_GRATICULE
Clip the area to outline and graticule.
|
TRUE
Clip the area to the chart area.
|
Modifier and Type | Method and Description |
---|---|
String |
value()
Returns the name value of property
|
static ClipMap |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClipMap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
checkAndGetIfValid, checkIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValid
public static final ClipMap OUTLINE
public static final ClipMap GRATICULE
public static final ClipMap OUTLINE_GRATICULE
public static final ClipMap ITEMS
public static final ClipMap TRUE
public static final ClipMap FALSE
public static ClipMap[] values()
for (ClipMap c : ClipMap.values()) System.out.println(c);
public static ClipMap valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null