jpicedt.graphic.model
Enum AbstractCurve.PointType
java.lang.Object
java.lang.Enum<AbstractCurve.PointType>
jpicedt.graphic.model.AbstractCurve.PointType
- All Implemented Interfaces:
- Serializable, Comparable<AbstractCurve.PointType>
- Enclosing class:
- AbstractCurve
public static enum AbstractCurve.PointType
- extends Enum<AbstractCurve.PointType>
constant field for getPointType()
INVALID_POINT_INDEX
public static final AbstractCurve.PointType INVALID_POINT_INDEX
FIRST_CURVE_END_POINT
public static final AbstractCurve.PointType FIRST_CURVE_END_POINT
SUBDIVISION_POINT
public static final AbstractCurve.PointType SUBDIVISION_POINT
FIRST_SEGMENT_CONTROL_POINT
public static final AbstractCurve.PointType FIRST_SEGMENT_CONTROL_POINT
SECOND_SEGMENT_CONTROL_POINT
public static final AbstractCurve.PointType SECOND_SEGMENT_CONTROL_POINT
LAST_CURVE_END_POINT
public static final AbstractCurve.PointType LAST_CURVE_END_POINT
values
public static AbstractCurve.PointType[] 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 (AbstractCurve.PointType c : AbstractCurve.PointType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AbstractCurve.PointType valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Submit a bug : syd@jpicedt.org