public static enum SimpleLineSymbol.StyleType extends java.lang.Enum<SimpleLineSymbol.StyleType>
Enum Constant and Description |
---|
NOT_SET |
STYLE_DASH |
STYLE_DASHDOT |
STYLE_DASHDOTDOT |
STYLE_DOT |
STYLE_NULL |
STYLE_SOLID |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static SimpleLineSymbol.StyleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleLineSymbol.StyleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleLineSymbol.StyleType NOT_SET
public static final SimpleLineSymbol.StyleType STYLE_DASH
public static final SimpleLineSymbol.StyleType STYLE_DASHDOT
public static final SimpleLineSymbol.StyleType STYLE_DASHDOTDOT
public static final SimpleLineSymbol.StyleType STYLE_DOT
public static final SimpleLineSymbol.StyleType STYLE_NULL
public static final SimpleLineSymbol.StyleType STYLE_SOLID
public static SimpleLineSymbol.StyleType[] values()
for (SimpleLineSymbol.StyleType c : SimpleLineSymbol.StyleType.values()) System.out.println(c);
public static SimpleLineSymbol.StyleType 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 nullpublic java.lang.String getValue()