net.nexttext.renderer.util
Enum TriangulationVertex.VertexType

java.lang.Object
  extended by java.lang.Enum<TriangulationVertex.VertexType>
      extended by net.nexttext.renderer.util.TriangulationVertex.VertexType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TriangulationVertex.VertexType>
Enclosing class:
TriangulationVertex

public static enum TriangulationVertex.VertexType
extends java.lang.Enum<TriangulationVertex.VertexType>

Vertex type enumeration.


Enum Constant Summary
END
           
MERGE
           
REGULAR_LEFT
           
REGULAR_RIGHT
           
SPLIT
           
START
           
UNSET
           
 
Method Summary
static TriangulationVertex.VertexType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TriangulationVertex.VertexType[] values()
          Returns an array containing the constants of this enum type, in the order they're 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

START

public static final TriangulationVertex.VertexType START

END

public static final TriangulationVertex.VertexType END

SPLIT

public static final TriangulationVertex.VertexType SPLIT

MERGE

public static final TriangulationVertex.VertexType MERGE

REGULAR_RIGHT

public static final TriangulationVertex.VertexType REGULAR_RIGHT

REGULAR_LEFT

public static final TriangulationVertex.VertexType REGULAR_LEFT

UNSET

public static final TriangulationVertex.VertexType UNSET
Method Detail

values

public static final TriangulationVertex.VertexType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(TriangulationVertex.VertexType c : TriangulationVertex.VertexType.values())
        System.out.println(c);

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

valueOf

public static TriangulationVertex.VertexType 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