public enum ModuleMethod extends Enum<ModuleMethod>
| Enum Constant and Description |
|---|
QUERY_ANSWERING
Modules for query answering.
|
SYNTACTIC_COUNTING
Syntactic modules with counting.
|
SYNTACTIC_STANDARD
Standard syntactic modules.
|
| Modifier and Type | Method and Description |
|---|---|
static ModuleMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleMethod SYNTACTIC_STANDARD
public static final ModuleMethod SYNTACTIC_COUNTING
public static final ModuleMethod QUERY_ANSWERING
public static ModuleMethod[] values()
for (ModuleMethod c : ModuleMethod.values()) System.out.println(c);
public static ModuleMethod 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 nullCopyright © 2017 The University of Manchester. All Rights Reserved.