net.paulhertz.aifile
Enum BezShape.BezType

java.lang.Object
  extended by java.lang.Enum<BezShape.BezType>
      extended by net.paulhertz.aifile.BezShape.BezType
All Implemented Interfaces:
Serializable, Comparable<BezShape.BezType>
Enclosing class:
BezShape

public static enum BezShape.BezType
extends Enum<BezShape.BezType>


Enum Constant Summary
BEZ_CIRCLE
           
BEZ_CURVE
           
BEZ_CURVE_POLY
           
BEZ_ELLIPSE
           
BEZ_LINE
           
BEZ_MULTICURVE
           
BEZ_MULTILINE
           
BEZ_PATH
           
BEZ_POLY
           
BEZ_RECTANGLE
           
BEZ_REGULAR_POLY
           
BEZ_TRIANGLE
           
 
Method Summary
static BezShape.BezType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BezShape.BezType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BEZ_PATH

public static final BezShape.BezType BEZ_PATH

BEZ_TRIANGLE

public static final BezShape.BezType BEZ_TRIANGLE

BEZ_CIRCLE

public static final BezShape.BezType BEZ_CIRCLE

BEZ_ELLIPSE

public static final BezShape.BezType BEZ_ELLIPSE

BEZ_CURVE_POLY

public static final BezShape.BezType BEZ_CURVE_POLY

BEZ_REGULAR_POLY

public static final BezShape.BezType BEZ_REGULAR_POLY

BEZ_LINE

public static final BezShape.BezType BEZ_LINE

BEZ_CURVE

public static final BezShape.BezType BEZ_CURVE

BEZ_MULTILINE

public static final BezShape.BezType BEZ_MULTILINE

BEZ_MULTICURVE

public static final BezShape.BezType BEZ_MULTICURVE

BEZ_RECTANGLE

public static final BezShape.BezType BEZ_RECTANGLE

BEZ_POLY

public static final BezShape.BezType BEZ_POLY
Method Detail

values

public static BezShape.BezType[] 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 (BezShape.BezType c : BezShape.BezType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BezShape.BezType 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


Processing library IgnoCodeLib by Paul Hertz. (C) 2013