static enum WALFactory.Providers extends Enum<WALFactory.Providers>
Enum Constant and Description |
---|
asyncfs |
defaultProvider |
filesystem |
multiwal |
Modifier and Type | Field and Description |
---|---|
(package private) Class<? extends WALProvider> |
clazz |
Modifier and Type | Method and Description |
---|---|
static WALFactory.Providers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WALFactory.Providers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WALFactory.Providers defaultProvider
public static final WALFactory.Providers filesystem
public static final WALFactory.Providers multiwal
public static final WALFactory.Providers asyncfs
final Class<? extends WALProvider> clazz
public static WALFactory.Providers[] values()
for (WALFactory.Providers c : WALFactory.Providers.values()) System.out.println(c);
public static WALFactory.Providers 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 © 2007–2020 The Apache Software Foundation. All rights reserved.