public static enum XenonPropertyDescription.Component extends java.lang.Enum<XenonPropertyDescription.Component>
Enum Constant and Description |
---|
CREDENTIALS
Properties for
CREDENTIAL components can be passed to the various newCredential calls in
Credentials . |
FILESYSTEM
Properties for
FILESYSTEM components can be passed to
Files.newFileSystem(String, String, Credential, Map) . |
SCHEDULER
Properties for
SCHEDULER components can be passed to
Jobs.newScheduler(String, String, Credential, Map) . |
XENON
Properties for
XENON components can be passed to
XenonFactory.newXenon(Map) . |
Modifier and Type | Method and Description |
---|---|
static XenonPropertyDescription.Component |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XenonPropertyDescription.Component[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XenonPropertyDescription.Component XENON
XENON
components can be passed to
XenonFactory.newXenon(Map)
.public static final XenonPropertyDescription.Component SCHEDULER
SCHEDULER
components can be passed to
Jobs.newScheduler(String, String, Credential, Map)
.public static final XenonPropertyDescription.Component FILESYSTEM
FILESYSTEM
components can be passed to
Files.newFileSystem(String, String, Credential, Map)
.public static final XenonPropertyDescription.Component CREDENTIALS
CREDENTIAL
components can be passed to the various newCredential
calls in
Credentials
.public static XenonPropertyDescription.Component[] values()
for (XenonPropertyDescription.Component c : XenonPropertyDescription.Component.values()) System.out.println(c);
public static XenonPropertyDescription.Component 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