public enum RegistryBackend extends Enum<RegistryBackend>
| Enum Constant and Description |
|---|
INMEMORY
Enum values of KeyElements
|
MONGODB |
SQL |
| Modifier and Type | Method and Description |
|---|---|
static RegistryBackend |
fromString(String literal)
Method to transform string literal to RegistryBackend enum.
|
String |
toString() |
static RegistryBackend |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegistryBackend[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistryBackend INMEMORY
public static final RegistryBackend SQL
public static final RegistryBackend MONGODB
public static RegistryBackend[] values()
for (RegistryBackend c : RegistryBackend.values()) System.out.println(c);
public static RegistryBackend 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 nullpublic String toString()
toString in class Enum<RegistryBackend>public static RegistryBackend fromString(String literal)
literal - StandardizedLiteralEnumHelperCopyright © 2021. All rights reserved.