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