Enum FileCommand.COMMAND
- java.lang.Object
-
- java.lang.Enum<FileCommand.COMMAND>
-
- org.pentaho.mantle.client.solutionbrowser.filelist.FileCommand.COMMAND
-
- All Implemented Interfaces:
Serializable
,Comparable<FileCommand.COMMAND>
- Enclosing class:
- FileCommand
public static enum FileCommand.COMMAND extends Enum<FileCommand.COMMAND>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKGROUND
COPY
CREATE_FOLDER
CUT
DELETE
DELETEPERMANENT
EDIT
EDIT_ACTION
EXPORT
FAVORITE
FAVORITE_REMOVE
GENERATED_CONTENT
IMPORT
NEWWINDOW
PROPERTIES
RESTORE
RUN
SCHEDULE_CUSTOM
SCHEDULE_NEW
SHARE
SUBSCRIBE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileCommand.COMMAND
valueOf(String name)
Returns the enum constant of this type with the specified name.static FileCommand.COMMAND[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RUN
public static final FileCommand.COMMAND RUN
-
EDIT
public static final FileCommand.COMMAND EDIT
-
DELETE
public static final FileCommand.COMMAND DELETE
-
PROPERTIES
public static final FileCommand.COMMAND PROPERTIES
-
BACKGROUND
public static final FileCommand.COMMAND BACKGROUND
-
NEWWINDOW
public static final FileCommand.COMMAND NEWWINDOW
-
SCHEDULE_CUSTOM
public static final FileCommand.COMMAND SCHEDULE_CUSTOM
-
SCHEDULE_NEW
public static final FileCommand.COMMAND SCHEDULE_NEW
-
SUBSCRIBE
public static final FileCommand.COMMAND SUBSCRIBE
-
SHARE
public static final FileCommand.COMMAND SHARE
-
EDIT_ACTION
public static final FileCommand.COMMAND EDIT_ACTION
-
CREATE_FOLDER
public static final FileCommand.COMMAND CREATE_FOLDER
-
IMPORT
public static final FileCommand.COMMAND IMPORT
-
EXPORT
public static final FileCommand.COMMAND EXPORT
-
COPY
public static final FileCommand.COMMAND COPY
-
CUT
public static final FileCommand.COMMAND CUT
-
GENERATED_CONTENT
public static final FileCommand.COMMAND GENERATED_CONTENT
-
RESTORE
public static final FileCommand.COMMAND RESTORE
-
DELETEPERMANENT
public static final FileCommand.COMMAND DELETEPERMANENT
-
FAVORITE
public static final FileCommand.COMMAND FAVORITE
-
FAVORITE_REMOVE
public static final FileCommand.COMMAND FAVORITE_REMOVE
-
-
Method Detail
-
values
public static FileCommand.COMMAND[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FileCommand.COMMAND c : FileCommand.COMMAND.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileCommand.COMMAND valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-