@PublicAPI public enum OutputAccessMode extends Enum<OutputAccessMode>
Enum Constant and Description |
---|
none
Do nothing
|
TransferToGlobalSpace
LOCAL to GLOBAL
|
TransferToOutputSpace
Transfer files from LOCAL space to OUTPUT space
|
TransferToUserSpace
LOCAL to GLOBAL
|
Modifier and Type | Method and Description |
---|---|
static OutputAccessMode |
getAccessMode(String accessMode) |
String |
toString() |
static OutputAccessMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputAccessMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputAccessMode TransferToOutputSpace
public static final OutputAccessMode TransferToGlobalSpace
public static final OutputAccessMode TransferToUserSpace
public static final OutputAccessMode none
public static OutputAccessMode[] values()
for (OutputAccessMode c : OutputAccessMode.values()) System.out.println(c);
public static OutputAccessMode 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 static OutputAccessMode getAccessMode(String accessMode)
public String toString()
toString
in class Enum<OutputAccessMode>