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