public static enum HemfPlusPath.EmfPlusPathPointType extends java.lang.Enum<HemfPlusPath.EmfPlusPathPointType>
Enum Constant and Description |
---|
BEZIER
Specifies that the point is an endpoint or control point of a cubic Bezier curve
|
LINE
Specifies that the point is one of the two endpoints of a line.
|
START
Specifies that the point is the starting point of a path.
|
UNUSED |
Modifier and Type | Method and Description |
---|---|
static HemfPlusPath.EmfPlusPathPointType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HemfPlusPath.EmfPlusPathPointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HemfPlusPath.EmfPlusPathPointType START
public static final HemfPlusPath.EmfPlusPathPointType LINE
public static final HemfPlusPath.EmfPlusPathPointType UNUSED
public static final HemfPlusPath.EmfPlusPathPointType BEZIER
public static HemfPlusPath.EmfPlusPathPointType[] values()
for (HemfPlusPath.EmfPlusPathPointType c : HemfPlusPath.EmfPlusPathPointType.values()) System.out.println(c);
public static HemfPlusPath.EmfPlusPathPointType 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 2021 The Apache Software Foundation or its licensors, as applicable.