Enum FolderCommand.COMMAND
- java.lang.Object
-
- java.lang.Enum<FolderCommand.COMMAND>
-
- org.pentaho.mantle.client.solutionbrowser.FolderCommand.COMMAND
-
- All Implemented Interfaces:
Serializable
,Comparable<FolderCommand.COMMAND>
- Enclosing class:
- FolderCommand
public static enum FolderCommand.COMMAND extends Enum<FolderCommand.COMMAND>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATE_FOLDER
DELETE
EMPTY_TRASH
EXPORT
IMPORT
PASTE
PROPERTIES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FolderCommand.COMMAND
valueOf(String name)
Returns the enum constant of this type with the specified name.static FolderCommand.COMMAND[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELETE
public static final FolderCommand.COMMAND DELETE
-
PROPERTIES
public static final FolderCommand.COMMAND PROPERTIES
-
CREATE_FOLDER
public static final FolderCommand.COMMAND CREATE_FOLDER
-
EXPORT
public static final FolderCommand.COMMAND EXPORT
-
IMPORT
public static final FolderCommand.COMMAND IMPORT
-
PASTE
public static final FolderCommand.COMMAND PASTE
-
EMPTY_TRASH
public static final FolderCommand.COMMAND EMPTY_TRASH
-
-
Method Detail
-
values
public static FolderCommand.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 (FolderCommand.COMMAND c : FolderCommand.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 FolderCommand.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
-
-