public enum CooccurrenceFunction extends Enum<CooccurrenceFunction>
| Enum Constant and Description |
|---|
document |
left_neighbour |
right_neighbour |
sentence |
| Modifier and Type | Method and Description |
|---|---|
static CooccurrenceFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CooccurrenceFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CooccurrenceFunction right_neighbour
public static final CooccurrenceFunction left_neighbour
public static final CooccurrenceFunction sentence
public static final CooccurrenceFunction document
public static CooccurrenceFunction[] values()
for (CooccurrenceFunction c : CooccurrenceFunction.values()) System.out.println(c);
public static CooccurrenceFunction 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 © 2013-2019 Department of Linguistics, Tübingen University. All Rights Reserved.