public static enum HwmfPenStyle.HwmfLineDash extends java.lang.Enum<HwmfPenStyle.HwmfLineDash>
Enum Constant and Description |
---|
DASH
The pen is dashed.
|
DASHDOT
The pen has alternating dashes and dots.
|
DASHDOTDOT
The pen has dashes and double dots.
|
DOT
The pen is dotted.
|
INSIDEFRAME
The pen is solid.
|
NULL
The pen is invisible.
|
SOLID
The pen is solid.
|
USERSTYLE
The pen uses a styling array supplied by the user.
|
Modifier and Type | Method and Description |
---|---|
static HwmfPenStyle.HwmfLineDash |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HwmfPenStyle.HwmfLineDash[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HwmfPenStyle.HwmfLineDash SOLID
public static final HwmfPenStyle.HwmfLineDash DASH
public static final HwmfPenStyle.HwmfLineDash DOT
public static final HwmfPenStyle.HwmfLineDash DASHDOT
public static final HwmfPenStyle.HwmfLineDash DASHDOTDOT
public static final HwmfPenStyle.HwmfLineDash NULL
public static final HwmfPenStyle.HwmfLineDash INSIDEFRAME
public static final HwmfPenStyle.HwmfLineDash USERSTYLE
public static HwmfPenStyle.HwmfLineDash[] values()
for (HwmfPenStyle.HwmfLineDash c : HwmfPenStyle.HwmfLineDash.values()) System.out.println(c);
public static HwmfPenStyle.HwmfLineDash 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 2020 The Apache Software Foundation or its licensors, as applicable.