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