Enum Constant and Description |
---|
DASH |
DASH_DOT |
DOT |
LG_DASH |
LG_DASH_DOT |
LG_DASH_DOT_DOT |
SOLID |
SYS_DASH |
SYS_DASH_DOT |
SYS_DASH_DOT_DOT |
SYS_DOT |
Modifier and Type | Method and Description |
---|---|
static LineDash |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineDash[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineDash SOLID
public static final LineDash DOT
public static final LineDash DASH
public static final LineDash LG_DASH
public static final LineDash DASH_DOT
public static final LineDash LG_DASH_DOT
public static final LineDash LG_DASH_DOT_DOT
public static final LineDash SYS_DASH
public static final LineDash SYS_DOT
public static final LineDash SYS_DASH_DOT
public static final LineDash SYS_DASH_DOT_DOT
public static LineDash[] values()
for (LineDash c : LineDash.values()) System.out.println(c);
public static LineDash 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 © 2005-2010 Potix Corporation. All Rights Reserved.