de.cau.cs.kieler.kiml.ogdf.options
Enum Costs

java.lang.Object
  extended by java.lang.Enum<Costs>
      extended by de.cau.cs.kieler.kiml.ogdf.options.Costs
All Implemented Interfaces:
Comparable<Costs>

public enum Costs
extends Enum<Costs>

Definition of the costs option for the Davidson-Harel layouter.

Rating red

Enum Constant Summary
PLANAR
          planar costs.
REPULSE
          repulse costs.
STANDARD
          standard costs.
 
Method Summary
static Costs valueOf(int i)
          Returns the enumeration value related to the given ordinal.
static Costs valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Costs[] 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

STANDARD

public static final Costs STANDARD
standard costs.


REPULSE

public static final Costs REPULSE
repulse costs.


PLANAR

public static final Costs PLANAR
planar costs.

Method Detail

values

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

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

valueOf

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

valueOf

public static Costs valueOf(int i)
Returns the enumeration value related to the given ordinal.

Parameters:
i - ordinal value
Returns:
the related enumeration value