public static enum HwmfPenStyle.HwmfLineCap extends java.lang.Enum<HwmfPenStyle.HwmfLineCap>
Enum Constant and Description |
---|
FLAT
Line ends at end point
|
ROUND
Rounded ends
|
SQUARE
Square protrudes by half line width
|
Modifier and Type | Method and Description |
---|---|
static HwmfPenStyle.HwmfLineCap |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HwmfPenStyle.HwmfLineCap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HwmfPenStyle.HwmfLineCap ROUND
public static final HwmfPenStyle.HwmfLineCap SQUARE
public static final HwmfPenStyle.HwmfLineCap FLAT
public static HwmfPenStyle.HwmfLineCap[] values()
for (HwmfPenStyle.HwmfLineCap c : HwmfPenStyle.HwmfLineCap.values()) System.out.println(c);
public static HwmfPenStyle.HwmfLineCap 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 2022 The Apache Software Foundation or its licensors, as applicable.