public enum PresetLineDash extends java.lang.Enum<PresetLineDash>
| Enum Constant and Description |
|---|
DASH |
DASH_DOT |
DOT |
LARGE_DASH |
LARGE_DASH_DOT |
LARGE_DASH_DOT_DOT |
SOLID |
SYSTEM_DASH |
SYSTEM_DASH_DOT |
SYSTEM_DASH_DOT_DOT |
SYSTEM_DOT |
| Modifier and Type | Method and Description |
|---|---|
static PresetLineDash |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PresetLineDash[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PresetLineDash DASH
public static final PresetLineDash DASH_DOT
public static final PresetLineDash DOT
public static final PresetLineDash LARGE_DASH
public static final PresetLineDash LARGE_DASH_DOT
public static final PresetLineDash LARGE_DASH_DOT_DOT
public static final PresetLineDash SOLID
public static final PresetLineDash SYSTEM_DASH
public static final PresetLineDash SYSTEM_DASH_DOT
public static final PresetLineDash SYSTEM_DASH_DOT_DOT
public static final PresetLineDash SYSTEM_DOT
public static PresetLineDash[] values()
for (PresetLineDash c : PresetLineDash.values()) System.out.println(c);
public static PresetLineDash 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 nullCopyright 2022 The Apache Software Foundation or its licensors, as applicable.