net.xqhs.graphs.representation.graphical
Enum GraphicalRepresentationElement.EdgeType

java.lang.Object
  extended by java.lang.Enum<GraphicalRepresentationElement.EdgeType>
      extended by net.xqhs.graphs.representation.graphical.GraphicalRepresentationElement.EdgeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GraphicalRepresentationElement.EdgeType>
Enclosing class:
GraphicalRepresentationElement

static enum GraphicalRepresentationElement.EdgeType
extends java.lang.Enum<GraphicalRepresentationElement.EdgeType>


Enum Constant Summary
BACKLINK
           
CHILDLINK
           
EXTLINK
           
FORELINK
           
SIDELINK
           
 
Method Summary
static GraphicalRepresentationElement.EdgeType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GraphicalRepresentationElement.EdgeType[] 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
 

Enum Constant Detail

CHILDLINK

public static final GraphicalRepresentationElement.EdgeType CHILDLINK

SIDELINK

public static final GraphicalRepresentationElement.EdgeType SIDELINK

EXTLINK

public static final GraphicalRepresentationElement.EdgeType EXTLINK

FORELINK

public static final GraphicalRepresentationElement.EdgeType FORELINK

BACKLINK

public static final GraphicalRepresentationElement.EdgeType BACKLINK
Method Detail

values

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

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

valueOf

public static GraphicalRepresentationElement.EdgeType 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