public enum PathProvider extends java.lang.Enum<PathProvider>
At the moment only google-GCS support is available, but it should be easy to follow the pattern and add support for other Path providers.
Enum Constant and Description |
---|
GCS |
Modifier and Type | Field and Description |
---|---|
boolean |
isAvailable |
Modifier and Type | Method and Description |
---|---|
protected abstract boolean |
initialize() |
static PathProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PathProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathProvider GCS
public static PathProvider[] values()
for (PathProvider c : PathProvider.values()) System.out.println(c);
public static PathProvider 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 nullprotected abstract boolean initialize()