public static enum EnhancedPath.SegType extends java.lang.Enum<EnhancedPath.SegType>
Enum Constant and Description |
---|
ARCTO |
CLOCKWISE_ARCTO |
CLOSE |
CURVETO |
ELLIPSETO |
LINETO |
MOVETO |
QUADRANT_XTO |
QUADRANT_YTO |
QUADTO |
Modifier and Type | Method and Description |
---|---|
static EnhancedPath.SegType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnhancedPath.SegType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnhancedPath.SegType MOVETO
public static final EnhancedPath.SegType LINETO
public static final EnhancedPath.SegType CURVETO
public static final EnhancedPath.SegType QUADTO
public static final EnhancedPath.SegType CLOSE
public static final EnhancedPath.SegType ELLIPSETO
public static final EnhancedPath.SegType ARCTO
public static final EnhancedPath.SegType CLOCKWISE_ARCTO
public static final EnhancedPath.SegType QUADRANT_XTO
public static final EnhancedPath.SegType QUADRANT_YTO
public static EnhancedPath.SegType[] values()
for (EnhancedPath.SegType c : EnhancedPath.SegType.values()) System.out.println(c);
public static EnhancedPath.SegType 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