| Enum Constant and Description |
|---|
CS
Sensitive flag.
|
DC
Diacritics flag.
|
FZ
Fuzzy flag.
|
LC
Lowercase flag.
|
ST
Stemming flag.
|
UC
Uppercase flag.
|
WC
Wildcards flag.
|
| Modifier and Type | Method and Description |
|---|---|
static FTFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FTFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTFlag CS
public static final FTFlag LC
public static final FTFlag UC
public static final FTFlag DC
public static final FTFlag ST
public static final FTFlag WC
public static final FTFlag FZ
public static FTFlag[] values()
for (FTFlag c : FTFlag.values()) System.out.println(c);
public static FTFlag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null