de.cau.cs.kieler.klodd.hierarchical
Enum InteractionLevel

java.lang.Object
  extended by java.lang.Enum<InteractionLevel>
      extended by de.cau.cs.kieler.klodd.hierarchical.InteractionLevel
All Implemented Interfaces:
Comparable<InteractionLevel>

public enum InteractionLevel
extends Enum<InteractionLevel>

Definition of possible interaction levels.

Rating red

Enum Constant Summary
CYCLES
          user positioning is considered for cycle breaking.
FULL
          full user interaction.
LAYERS
          user positioning is considered for cycle breaking and layering.
NONE
          no user interaction.
ORDERING
          user positioning is considered for node ordering.
 
Method Summary
static InteractionLevel valueOf(String name)
          Returns the enum constant of this type with the specified name.
static InteractionLevel[] 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

NONE

public static final InteractionLevel NONE
no user interaction.


CYCLES

public static final InteractionLevel CYCLES
user positioning is considered for cycle breaking.


LAYERS

public static final InteractionLevel LAYERS
user positioning is considered for cycle breaking and layering.


ORDERING

public static final InteractionLevel ORDERING
user positioning is considered for node ordering.


FULL

public static final InteractionLevel FULL
full user interaction.

Method Detail

values

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

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

valueOf

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