public static enum PortablePipelineOptions.RetrievalServiceType extends java.lang.Enum<PortablePipelineOptions.RetrievalServiceType>
Enum Constant and Description |
---|
CLASSLOADER
Artifacts are to be retrieved from the runtime
ClassLoader . |
FILE_SYSTEM
Artifacts are to be retrieved from a
FileSystem . |
Modifier and Type | Method and Description |
---|---|
static PortablePipelineOptions.RetrievalServiceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PortablePipelineOptions.RetrievalServiceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortablePipelineOptions.RetrievalServiceType FILE_SYSTEM
FileSystem
.public static final PortablePipelineOptions.RetrievalServiceType CLASSLOADER
ClassLoader
.public static PortablePipelineOptions.RetrievalServiceType[] values()
for (PortablePipelineOptions.RetrievalServiceType c : PortablePipelineOptions.RetrievalServiceType.values()) System.out.println(c);
public static PortablePipelineOptions.RetrievalServiceType 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