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