public static enum BigramExtractor.SignificanceTest extends Enum<BigramExtractor.SignificanceTest>
Enum Constant and Description |
---|
BARNARDS |
CHI_SQUARED |
FISHERS_EXACT |
LOG_LIKELIHOOD |
PMI |
Modifier and Type | Method and Description |
---|---|
static BigramExtractor.SignificanceTest |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BigramExtractor.SignificanceTest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BigramExtractor.SignificanceTest CHI_SQUARED
public static final BigramExtractor.SignificanceTest FISHERS_EXACT
public static final BigramExtractor.SignificanceTest BARNARDS
public static final BigramExtractor.SignificanceTest PMI
public static final BigramExtractor.SignificanceTest LOG_LIKELIHOOD
public static BigramExtractor.SignificanceTest[] values()
for (BigramExtractor.SignificanceTest c : BigramExtractor.SignificanceTest.values()) System.out.println(c);
public static BigramExtractor.SignificanceTest 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 © 2012. All Rights Reserved.