org.jhotdraw.samples.odg.geom
Enum EnhancedPath.SegType
java.lang.Object
java.lang.Enum<EnhancedPath.SegType>
org.jhotdraw.samples.odg.geom.EnhancedPath.SegType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<EnhancedPath.SegType>
- Enclosing class:
- EnhancedPath
public static enum EnhancedPath.SegType
- extends java.lang.Enum<EnhancedPath.SegType>
Method Summary |
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. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
MOVETO
public static final EnhancedPath.SegType MOVETO
LINETO
public static final EnhancedPath.SegType LINETO
CURVETO
public static final EnhancedPath.SegType CURVETO
QUADTO
public static final EnhancedPath.SegType QUADTO
CLOSE
public static final EnhancedPath.SegType CLOSE
ELLIPSETO
public static final EnhancedPath.SegType ELLIPSETO
ARCTO
public static final EnhancedPath.SegType ARCTO
CLOCKWISE_ARCTO
public static final EnhancedPath.SegType CLOCKWISE_ARCTO
QUADRANT_XTO
public static final EnhancedPath.SegType QUADRANT_XTO
QUADRANT_YTO
public static final EnhancedPath.SegType QUADRANT_YTO
values
public static EnhancedPath.SegType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (EnhancedPath.SegType c : EnhancedPath.SegType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static EnhancedPath.SegType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null