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.Action extends java.lang.Enum<Language.Action>
Modifier and Type | Method and Description |
---|---|
static Language.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Language.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Language.Action CREATE
public static final Language.Action DELETE
public static Language.Action[] values()
for (Language.Action c : Language.Action.values()) System.out.println(c);
public static Language.Action 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