public enum LinkLineType extends Enum<LinkLineType>
| Enum Constant and Description |
|---|
DASHED
Dashed line type.
|
DOTTED
Dotted line type.
|
SOLID
Solid line type.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Returns value for enumeration.
|
static LinkLineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkLineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkLineType SOLID
public static final LinkLineType DOTTED
public static final LinkLineType DASHED
public static LinkLineType[] values()
for (LinkLineType c : LinkLineType.values()) System.out.println(c);
public static LinkLineType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getValue()