com.sun.electric.tool.logicaleffort
Enum LESizer.Alg

java.lang.Object
  extended by java.lang.Enum<LESizer.Alg>
      extended by com.sun.electric.tool.logicaleffort.LESizer.Alg
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LESizer.Alg>
Enclosing class:
LESizer

public static enum LESizer.Alg
extends java.lang.Enum<LESizer.Alg>

Alg is a typesafe enum class that describes the algorithm to be used


Enum Constant Summary
EQUALGATEDELAYS
          Sizes all gates for user specified equal gate delay
PATHDELAY
          Sizes for optimal path delay
 
Method Summary
 java.lang.String toString()
           
static LESizer.Alg valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LESizer.Alg[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EQUALGATEDELAYS

public static final LESizer.Alg EQUALGATEDELAYS
Sizes all gates for user specified equal gate delay


PATHDELAY

public static final LESizer.Alg PATHDELAY
Sizes for optimal path delay

Method Detail

values

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

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

valueOf

public static LESizer.Alg 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

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<LESizer.Alg>