de.cau.cs.kieler.esterel.cec
Enum CEC.MODULE
java.lang.Object
java.lang.Enum<CEC.MODULE>
de.cau.cs.kieler.esterel.cec.CEC.MODULE
- All Implemented Interfaces:
- Serializable, Comparable<CEC.MODULE>
- Enclosing class:
- CEC
public static enum CEC.MODULE
- extends Enum<CEC.MODULE>
all modules that are part of the CEC. The names match the names of the executables, excluding
special characters like "-".
- Rating

ASTGRC
public static final CEC.MODULE ASTGRC
BALASM
public static final CEC.MODULE BALASM
BLIFUTIL
public static final CEC.MODULE BLIFUTIL
DISMANTLE
public static final CEC.MODULE DISMANTLE
EEC
public static final CEC.MODULE EEC
EXPANDMODULE
public static final CEC.MODULE EXPANDMODULE
GRC3VAL
public static final CEC.MODULE GRC3VAL
GRCBAL
public static final CEC.MODULE GRCBAL
GRCC2
public static final CEC.MODULE GRCC2
GRCDOT
public static final CEC.MODULE GRCDOT
GRCOPT
public static final CEC.MODULE GRCOPT
GRCPDG
public static final CEC.MODULE GRCPDG
GRCSIM
public static final CEC.MODULE GRCSIM
PDGBLIF
public static final CEC.MODULE PDGBLIF
PDGCCFG
public static final CEC.MODULE PDGCCFG
SCFGC
public static final CEC.MODULE SCFGC
SMBLIF
public static final CEC.MODULE SMBLIF
STRLXML
public static final CEC.MODULE STRLXML
V5CMAIN
public static final CEC.MODULE V5CMAIN
VM
public static final CEC.MODULE VM
VMWRAPPER
public static final CEC.MODULE VMWRAPPER
XMLSTRL
public static final CEC.MODULE XMLSTRL
values
public static CEC.MODULE[] 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 (CEC.MODULE c : CEC.MODULE.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static CEC.MODULE 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
toString
public String toString()
- Overrides:
toString
in class Enum<CEC.MODULE>