public enum LineType extends Enum<LineType>
| Enum Constant and Description |
|---|
DASHED |
DASHED_DOTTED |
DOTTED |
LINE |
| Modifier and Type | Method and Description |
|---|---|
static LineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineType LINE
public static final LineType DASHED
public static final LineType DOTTED
public static final LineType DASHED_DOTTED
public final String value
public static LineType[] values()
for (LineType c : LineType.values()) System.out.println(c);
public static LineType 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 nullCopyright © 2016. All rights reserved.