public static enum BulkOperation.Method extends Enum<BulkOperation.Method>
| Enum Constant and Description |
|---|
DELETE
The DELETE method, used to delete a SCIM resource.
|
PATCH
The PATCH method, used to modify, add or delete attributes of a SCIM
resource.
|
POST
The POST method, used to create a new SCIM resource.
|
PUT
The PUT method, used to replace the entire contents of a SCIM resource.
|
| Modifier and Type | Method and Description |
|---|---|
static BulkOperation.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BulkOperation.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BulkOperation.Method POST
public static final BulkOperation.Method PUT
public static final BulkOperation.Method PATCH
public static final BulkOperation.Method DELETE
public static BulkOperation.Method[] values()
for (BulkOperation.Method c : BulkOperation.Method.values()) System.out.println(c);
public static BulkOperation.Method valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011–2016 UnboundID. All rights reserved.