public enum LineDashStyle extends java.lang.Enum<LineDashStyle>
| Enum Constant and Description |
|---|
Dash
Specifies the line consists of only dashes.
|
DashDot
Specifies the line is a dash-dot pattern.
|
DashDotDot
Specifies the line is a dash-dot-dot pattern.
|
LongDash
Specifies the line consists of long dashes.
|
LongDashDot
Specifies the line is a long dash-dot pattern.
|
LongDashDotDot
Specifies the line is a long dash-dot-dot pattern.
|
Mixed
For special shapes use only.
|
RoundDot
Specifies the line is made up of round dots.
|
Solid
Specifies the line is solid.
|
SquareDot
Specifies the line is made up of square dots.
|
SysDash
Specifies the line is a long system-dash pattern.
|
SysDashDot
Specifies the line is a long system-dash-dot pattern.
|
SysDot
Specifies the line is a long system-dot pattern.
|
| Modifier and Type | Method and Description |
|---|---|
static LineDashStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineDashStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineDashStyle Solid
public static final LineDashStyle SquareDot
public static final LineDashStyle RoundDot
public static final LineDashStyle Dash
public static final LineDashStyle DashDot
public static final LineDashStyle DashDotDot
public static final LineDashStyle LongDash
public static final LineDashStyle LongDashDot
public static final LineDashStyle LongDashDotDot
public static final LineDashStyle SysDash
public static final LineDashStyle SysDot
public static final LineDashStyle SysDashDot
public static final LineDashStyle Mixed
public static LineDashStyle[] values()
for (LineDashStyle c : LineDashStyle.values()) System.out.println(c);
public static LineDashStyle 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