public static enum Styling.Style extends java.lang.Enum<Styling.Style>
Enum Constant and Description |
---|
lines
Lines style.
|
overlay_lines
Lines style with blend overlay.
|
overlay_polygons
Polygons style with blend overlay.
|
points
Points style.
|
polygons
Polygons style.
|
text
Text style.
|
Modifier and Type | Method and Description |
---|---|
static Styling.Style |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Styling.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Styling.Style polygons
public static final Styling.Style overlay_polygons
public static final Styling.Style lines
public static final Styling.Style overlay_lines
public static final Styling.Style points
public static final Styling.Style text
public static Styling.Style[] values()
for (Styling.Style c : Styling.Style.values()) System.out.println(c);
public static Styling.Style 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