Warning:
Fauna is decommissioning FQL v4 on June 30, 2025.
This driver is not compatible with FQL v10, the latest version. Fauna accounts created after August 21, 2024 must use FQL v10.
Ensure you migrate existing projects to the official v10 driver by the v4 EOL date: https://github.com/fauna/fauna-jvm.
For more information, see the v4 end of life (EOL) announcement and related FAQ.
public static enum Language.Normalizer extends java.lang.Enum<Language.Normalizer>
Enum Constant and Description |
---|
NFC |
NFD |
NFKC |
NFKCCaseFold |
NFKD |
Modifier and Type | Method and Description |
---|---|
static Language.Normalizer |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Language.Normalizer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Language.Normalizer NFD
public static final Language.Normalizer NFC
public static final Language.Normalizer NFKD
public static final Language.Normalizer NFKC
public static final Language.Normalizer NFKCCaseFold
public static Language.Normalizer[] values()
for (Language.Normalizer c : Language.Normalizer.values()) System.out.println(c);
public static Language.Normalizer 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