public enum EditParamsMode extends Enum<EditParamsMode>
| Enum Constant and Description |
|---|
CHARFILTER |
TOKENFILTER |
TOKENIZER |
| Modifier and Type | Method and Description |
|---|---|
static EditParamsMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EditParamsMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EditParamsMode CHARFILTER
public static final EditParamsMode TOKENIZER
public static final EditParamsMode TOKENFILTER
public static EditParamsMode[] values()
for (EditParamsMode c : EditParamsMode.values()) System.out.println(c);
public static EditParamsMode 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 © 2000-2024 Apache Software Foundation. All Rights Reserved.