math.geom2d.curve
Enum Curves2D.JunctionType

java.lang.Object
  extended by java.lang.Enum<Curves2D.JunctionType>
      extended by math.geom2d.curve.Curves2D.JunctionType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Curves2D.JunctionType>
Enclosing class:
Curves2D

public static enum Curves2D.JunctionType
extends java.lang.Enum<Curves2D.JunctionType>


Enum Constant Summary
FLAT
           
REENTRANT
           
SALIENT
           
 
Method Summary
static Curves2D.JunctionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Curves2D.JunctionType[] 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

SALIENT

public static final Curves2D.JunctionType SALIENT

REENTRANT

public static final Curves2D.JunctionType REENTRANT

FLAT

public static final Curves2D.JunctionType FLAT
Method Detail

values

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

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

valueOf

public static Curves2D.JunctionType 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