public static enum SnowballStemmer.ALGORITHM extends Enum<SnowballStemmer.ALGORITHM>
Enum Constant and Description |
---|
DANISH |
DUTCH |
ENGLISH |
FINNISH |
FRENCH |
GERMAN |
HUNGARIAN |
ITALIAN |
NORWEGIAN |
PORTER |
PORTUGUESE |
ROMANIAN |
RUSSIAN |
SPANISH |
SWEDISH |
TURKISH |
Modifier and Type | Method and Description |
---|---|
static SnowballStemmer.ALGORITHM |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SnowballStemmer.ALGORITHM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SnowballStemmer.ALGORITHM DANISH
public static final SnowballStemmer.ALGORITHM DUTCH
public static final SnowballStemmer.ALGORITHM ENGLISH
public static final SnowballStemmer.ALGORITHM FINNISH
public static final SnowballStemmer.ALGORITHM FRENCH
public static final SnowballStemmer.ALGORITHM GERMAN
public static final SnowballStemmer.ALGORITHM HUNGARIAN
public static final SnowballStemmer.ALGORITHM ITALIAN
public static final SnowballStemmer.ALGORITHM NORWEGIAN
public static final SnowballStemmer.ALGORITHM PORTER
public static final SnowballStemmer.ALGORITHM PORTUGUESE
public static final SnowballStemmer.ALGORITHM ROMANIAN
public static final SnowballStemmer.ALGORITHM RUSSIAN
public static final SnowballStemmer.ALGORITHM SPANISH
public static final SnowballStemmer.ALGORITHM SWEDISH
public static final SnowballStemmer.ALGORITHM TURKISH
public static SnowballStemmer.ALGORITHM[] values()
for (SnowballStemmer.ALGORITHM c : SnowballStemmer.ALGORITHM.values()) System.out.println(c);
public static SnowballStemmer.ALGORITHM 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 © 2015 The Apache Software Foundation. All rights reserved.