org.askalon.graph.chart
Enum NodeType

java.lang.Object
  extended by java.lang.Enum<NodeType>
      extended by org.askalon.graph.chart.NodeType
All Implemented Interfaces:
Serializable, Comparable<NodeType>

public enum NodeType
extends Enum<NodeType>

This is an enumeration of the available node types for charts which support different node types (XY and XML event chart).

Author:
Georg Schild and Franz Endstrasser

Enum Constant Summary
BOX
          Nodes are displayed as boxes (cuboids)
CONE
          Nodes are displayed as cones
CYLINDER
          Nodes are displayed as cylinders
SPHERE
          Nodes are displayed as spheres
 
Method Summary
static NodeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static NodeType[] 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

SPHERE

public static final NodeType SPHERE
Nodes are displayed as spheres


BOX

public static final NodeType BOX
Nodes are displayed as boxes (cuboids)


CONE

public static final NodeType CONE
Nodes are displayed as cones


CYLINDER

public static final NodeType CYLINDER
Nodes are displayed as cylinders

Method Detail

values

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

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

valueOf

public static NodeType 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


Part of:
Askalon_Logo
ASKALON Visualisation Diagrams