Package com.composum.sling.nodes.servlet
Enum NodeServlet.Operation
- java.lang.Object
-
- java.lang.Enum<NodeServlet.Operation>
-
- com.composum.sling.nodes.servlet.NodeServlet.Operation
-
- All Implemented Interfaces:
Serializable
,Comparable<NodeServlet.Operation>
- Enclosing class:
- NodeServlet
public static enum NodeServlet.Operation extends Enum<NodeServlet.Operation>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NodeServlet.Operation
valueOf(String name)
Returns the enum constant of this type with the specified name.static NodeServlet.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
create
public static final NodeServlet.Operation create
-
copy
public static final NodeServlet.Operation copy
-
move
public static final NodeServlet.Operation move
-
reorder
public static final NodeServlet.Operation reorder
-
delete
public static final NodeServlet.Operation delete
-
toggle
public static final NodeServlet.Operation toggle
-
tree
public static final NodeServlet.Operation tree
-
reference
public static final NodeServlet.Operation reference
-
mixins
public static final NodeServlet.Operation mixins
-
resolve
public static final NodeServlet.Operation resolve
-
typeahead
public static final NodeServlet.Operation typeahead
-
query
public static final NodeServlet.Operation query
-
querysuggest
public static final NodeServlet.Operation querysuggest
-
filters
public static final NodeServlet.Operation filters
-
map
public static final NodeServlet.Operation map
-
load
public static final NodeServlet.Operation load
-
download
public static final NodeServlet.Operation download
-
fileUpdate
public static final NodeServlet.Operation fileUpdate
-
-
Method Detail
-
values
public static NodeServlet.Operation[] 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 (NodeServlet.Operation c : NodeServlet.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NodeServlet.Operation 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
-
-