public enum MapTypeStyleElementType extends java.lang.Enum<MapTypeStyleElementType>
| Enum Constant and Description |
|---|
ALL
Apply the rule to all elements of the specified feature.
|
GEOMETRY
Apply the rule to the feature's geometry.
|
GEOMETRY_FILL
Apply the rule to the fill of the feature's geometry.
|
GEOMETRY_STROKE
Apply the rule to the stroke of the feature's geometry.
|
LABELS
Apply the rule to the feature's labels.
|
LABELS_ICON
Apply the rule to icons within the feature's labels.
|
LABELS_TEXT
Apply the rule to the text in the feature's label.
|
LABELS_TEXT_FILL
Apply the rule to the fill of the text in the feature's labels.
|
LABELS_TEXT_STROKE
Apply the rule to the stroke of the text in the feature's labels.
|
| Modifier and Type | Method and Description |
|---|---|
static MapTypeStyleElementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapTypeStyleElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapTypeStyleElementType ALL
public static final MapTypeStyleElementType GEOMETRY
public static final MapTypeStyleElementType GEOMETRY_FILL
public static final MapTypeStyleElementType GEOMETRY_STROKE
public static final MapTypeStyleElementType LABELS
public static final MapTypeStyleElementType LABELS_ICON
public static final MapTypeStyleElementType LABELS_TEXT
public static final MapTypeStyleElementType LABELS_TEXT_FILL
public static final MapTypeStyleElementType LABELS_TEXT_STROKE
public static MapTypeStyleElementType[] values()
for (MapTypeStyleElementType c : MapTypeStyleElementType.values()) System.out.println(c);
public static MapTypeStyleElementType 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