Enum PackageServlet.Operation
- java.lang.Object
-
- java.lang.Enum<PackageServlet.Operation>
-
- com.composum.sling.core.pckgmgr.jcrpckg.PackageServlet.Operation
-
- All Implemented Interfaces:
Serializable
,Comparable<PackageServlet.Operation>
- Enclosing class:
- PackageServlet
public static enum PackageServlet.Operation extends Enum<PackageServlet.Operation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description cleanup
cleanupObsoleteVersions
coverage
create
delete
deploy
download
filterAdd
filterChange
filterList
filterMoveDown
filterMoveUp
filterRemove
install
list
mode
query
registries
registriesTree
registryTree
service
thumbnail
tree
uninstall
update
upload
view
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PackageServlet.Operation
valueOf(String name)
Returns the enum constant of this type with the specified name.static PackageServlet.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 PackageServlet.Operation create
-
update
public static final PackageServlet.Operation update
-
delete
public static final PackageServlet.Operation delete
-
download
public static final PackageServlet.Operation download
-
upload
public static final PackageServlet.Operation upload
-
install
public static final PackageServlet.Operation install
-
uninstall
public static final PackageServlet.Operation uninstall
-
deploy
public static final PackageServlet.Operation deploy
-
service
public static final PackageServlet.Operation service
-
list
public static final PackageServlet.Operation list
-
tree
public static final PackageServlet.Operation tree
-
view
public static final PackageServlet.Operation view
-
query
public static final PackageServlet.Operation query
-
coverage
public static final PackageServlet.Operation coverage
-
filterList
public static final PackageServlet.Operation filterList
-
filterChange
public static final PackageServlet.Operation filterChange
-
filterAdd
public static final PackageServlet.Operation filterAdd
-
filterRemove
public static final PackageServlet.Operation filterRemove
-
filterMoveUp
public static final PackageServlet.Operation filterMoveUp
-
filterMoveDown
public static final PackageServlet.Operation filterMoveDown
-
cleanup
public static final PackageServlet.Operation cleanup
-
cleanupObsoleteVersions
public static final PackageServlet.Operation cleanupObsoleteVersions
-
mode
public static final PackageServlet.Operation mode
-
registryTree
public static final PackageServlet.Operation registryTree
-
registries
public static final PackageServlet.Operation registries
-
registriesTree
public static final PackageServlet.Operation registriesTree
-
thumbnail
public static final PackageServlet.Operation thumbnail
-
-
Method Detail
-
values
public static PackageServlet.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 (PackageServlet.Operation c : PackageServlet.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 PackageServlet.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
-
-