public static enum FileUploadPlugin.ExternalState extends java.lang.Enum<FileUploadPlugin.ExternalState>
Enum Constant and Description |
---|
Deleted
The file should be deleted
|
Unused
The file will no longer be used
|
Used
The file has been used for an operation, and
|
Modifier and Type | Method and Description |
---|---|
static FileUploadPlugin.ExternalState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileUploadPlugin.ExternalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileUploadPlugin.ExternalState Used
public static final FileUploadPlugin.ExternalState Unused
public static final FileUploadPlugin.ExternalState Deleted
public static FileUploadPlugin.ExternalState[] values()
for (FileUploadPlugin.ExternalState c : FileUploadPlugin.ExternalState.values()) System.out.println(c);
public static FileUploadPlugin.ExternalState 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