public enum GridLineDashStyle extends Enum<GridLineDashStyle> implements LowercaseEnum
| Enum Constant and Description |
|---|
DASH |
DASHDOT |
DOT |
LONGDASH |
LONGDASHDOT |
LONGDASHDOTDOT |
SHORTDASH |
SHORTDASHDOT |
SHORTDASHDOTDOT |
SHORTDOT |
SOLID |
| Modifier and Type | Method and Description |
|---|---|
static GridLineDashStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridLineDashStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridLineDashStyle SOLID
public static final GridLineDashStyle SHORTDASH
public static final GridLineDashStyle SHORTDOT
public static final GridLineDashStyle SHORTDASHDOT
public static final GridLineDashStyle SHORTDASHDOTDOT
public static final GridLineDashStyle DOT
public static final GridLineDashStyle DASH
public static final GridLineDashStyle LONGDASH
public static final GridLineDashStyle DASHDOT
public static final GridLineDashStyle LONGDASHDOT
public static final GridLineDashStyle LONGDASHDOTDOT
public static GridLineDashStyle[] values()
for (GridLineDashStyle c : GridLineDashStyle.values()) System.out.println(c);
public static GridLineDashStyle 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 © 2013. All Rights Reserved.