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