de.cau.cs.kieler.kiml
Enum LayoutOptionData.Target

java.lang.Object
  extended by java.lang.Enum<LayoutOptionData.Target>
      extended by de.cau.cs.kieler.kiml.LayoutOptionData.Target
All Implemented Interfaces:
Comparable<LayoutOptionData.Target>
Enclosing class:
LayoutOptionData<T>

public static enum LayoutOptionData.Target
extends Enum<LayoutOptionData.Target>

option target enumeration.

Rating red

Enum Constant Summary
EDGES
          edges target.
LABELS
          labels target.
NODES
          nodes target.
PARENTS
          parents target (hierarchical nodes).
PORTS
          ports target.
 
Method Summary
static LayoutOptionData.Target valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LayoutOptionData.Target[] 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

PARENTS

public static final LayoutOptionData.Target PARENTS
parents target (hierarchical nodes).


NODES

public static final LayoutOptionData.Target NODES
nodes target.


EDGES

public static final LayoutOptionData.Target EDGES
edges target.


PORTS

public static final LayoutOptionData.Target PORTS
ports target.


LABELS

public static final LayoutOptionData.Target LABELS
labels target.

Method Detail

values

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

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

valueOf

public static LayoutOptionData.Target 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