public enum LineDrawStyle extends java.lang.Enum<LineDrawStyle>
WARNING: do not modify the name of this class, its package or its members, as it is exposed via direct Java access from 4GL code.
| Enum Constant and Description |
|---|
DASH |
DASHDOT |
DASHDOTDOT |
DOT |
SOLID |
| Modifier and Type | Method and Description |
|---|---|
static LineDrawStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineDrawStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineDrawStyle SOLID
public static final LineDrawStyle DASH
public static final LineDrawStyle DASHDOT
public static final LineDrawStyle DASHDOTDOT
public static final LineDrawStyle DOT
public static LineDrawStyle[] values()
for (LineDrawStyle c : LineDrawStyle.values()) System.out.println(c);
public static LineDrawStyle 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 null