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