public enum SignificanceCheckType extends Enum<SignificanceCheckType>
| Enum Constant and Description |
|---|
EXHAUSTIVE |
HASHMAP_BASED |
TREE_OF_RUNS |
| Modifier and Type | Method and Description |
|---|---|
static SignificanceCheckType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignificanceCheckType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignificanceCheckType EXHAUSTIVE
public static final SignificanceCheckType HASHMAP_BASED
public static final SignificanceCheckType TREE_OF_RUNS
public static SignificanceCheckType[] values()
for (SignificanceCheckType c : SignificanceCheckType.values()) System.out.println(c);
public static SignificanceCheckType 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. All rights reserved.