public enum FTFlag extends Enum<FTFlag>
Enum Constant and Description |
---|
DC
Diacritics flag.
|
FZ
Fuzzy flag.
|
ST
Stemming flag.
|
WC
Wildcards flag.
|
Modifier and Type | Method and Description |
---|---|
static FTFlag |
valueOf(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 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(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 © 2005–2023 BaseX Team. All rights reserved.