public enum ModuleType extends Enum<ModuleType>
Enum Constant and Description |
---|
BOT
Module type representing bottom modules (AKA upper modules).
|
STAR
Module type representing fixpoint-nested modules (top-of-bottom-of-top-of-...).
|
TOP
Module type representing top modules (AKA lower modules).
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ModuleType |
valueOf(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
public static final ModuleType STAR
public static ModuleType[] values()
for (ModuleType c : ModuleType.values()) System.out.println(c);
public static ModuleType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<ModuleType>
Copyright © 2020 The University of Manchester. All rights reserved.