public static enum URIProvider.Operation extends java.lang.Enum<URIProvider.Operation>
Enum Constant and Description |
---|
CREATE
The URI may be used to create resources at the resource identified by the Resource.
|
DELETE
The URI may be used to delete the resource.
|
READ
The URI may be used to read the resource.
|
UPDATE
The URI may be used to update the resource.
|
Modifier and Type | Method and Description |
---|---|
static URIProvider.Operation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static URIProvider.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final URIProvider.Operation CREATE
public static final URIProvider.Operation READ
public static final URIProvider.Operation UPDATE
public static final URIProvider.Operation DELETE
public static URIProvider.Operation[] values()
for (URIProvider.Operation c : URIProvider.Operation.values()) System.out.println(c);
public static URIProvider.Operation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2010 - 2020 Adobe. All Rights Reserved