Enum ExplorerAppHandler.ActionMode
- java.lang.Object
-
- java.lang.Enum<ExplorerAppHandler.ActionMode>
-
- com.jalios.jcmsplugin.explorer.app.ExplorerAppHandler.ActionMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ExplorerAppHandler.ActionMode>
- Enclosing class:
- ExplorerAppHandler
public static enum ExplorerAppHandler.ActionMode extends java.lang.Enum<ExplorerAppHandler.ActionMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATEGORY_ONLY
FOLDER
MULTI_SELECTION
PUBLICATION_ONLY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExplorerAppHandler.ActionMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExplorerAppHandler.ActionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FOLDER
public static final ExplorerAppHandler.ActionMode FOLDER
-
MULTI_SELECTION
public static final ExplorerAppHandler.ActionMode MULTI_SELECTION
-
CATEGORY_ONLY
public static final ExplorerAppHandler.ActionMode CATEGORY_ONLY
-
PUBLICATION_ONLY
public static final ExplorerAppHandler.ActionMode PUBLICATION_ONLY
-
-
Method Detail
-
values
public static ExplorerAppHandler.ActionMode[] 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 (ExplorerAppHandler.ActionMode c : ExplorerAppHandler.ActionMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExplorerAppHandler.ActionMode valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-