Package org.geotools.api.style
Enum FeatureTypeStyle.RenderingSelectionOptions
- Object
-
- Enum<FeatureTypeStyle.RenderingSelectionOptions>
-
- RenderingSelectionOptions
-
- All Implemented Interfaces:
Serializable
,Comparable<FeatureTypeStyle.RenderingSelectionOptions>
- Enclosing interface:
- FeatureTypeStyle
public static enum FeatureTypeStyle.RenderingSelectionOptions extends Enum<FeatureTypeStyle.RenderingSelectionOptions>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LEGENDONLY
MAPONLY
NORMAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getOption()
static FeatureTypeStyle.RenderingSelectionOptions
valueOf(String name)
Returns the enum constant of this type with the specified name.static FeatureTypeStyle.RenderingSelectionOptions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL
public static final FeatureTypeStyle.RenderingSelectionOptions NORMAL
-
LEGENDONLY
public static final FeatureTypeStyle.RenderingSelectionOptions LEGENDONLY
-
MAPONLY
public static final FeatureTypeStyle.RenderingSelectionOptions MAPONLY
-
-
Method Detail
-
values
public static FeatureTypeStyle.RenderingSelectionOptions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FeatureTypeStyle.RenderingSelectionOptions c : FeatureTypeStyle.RenderingSelectionOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeatureTypeStyle.RenderingSelectionOptions valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getOption
public String getOption()
-
-