public enum ModuleType extends java.lang.Enum<ModuleType>
Enum Constant and Description |
---|
BOT
Module type representing bottom modules (aka upper modules).
|
BOT_OF_TOP
Deprecated.
Module type representing bottom-of-top modules (aka upper-of-lower modules).
|
STAR
Module type representing fixpoint-nested modules (top-of-bottom-of-top-of-...).
|
TOP
Module type representing top modules (aka lower modules).
|
TOP_OF_BOT
Deprecated.
Module type representing top-of-bottom modules (aka lower-of-upper modules).
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns the name and alternative name of the module type.
|
static ModuleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModuleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleType TOP
public static final ModuleType BOT
@Deprecated public static final ModuleType BOT_OF_TOP
@Deprecated public static final ModuleType TOP_OF_BOT
public static final ModuleType STAR
public static ModuleType[] values()
for (ModuleType c : ModuleType.values()) System.out.println(c);
public static ModuleType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<ModuleType>