public static enum URIProvider.Operation extends java.lang.Enum<URIProvider.Operation>
| Enum Constant and Description | 
|---|
| CREATEThe URI may be used to create resources at the resource identified by the Resource. | 
| DELETEThe URI may be used to delete the resource. | 
| READThe URI may be used to read the resource. | 
| UPDATEThe 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 © 2018 The Apache Software Foundation. All rights reserved.