public enum BulkOperationMode extends Enum<BulkOperationMode>
| Enum Constant and Description |
|---|
CREATE |
DELETE |
UPDATE |
UPDATE_IF_MATCH_ETAG |
| Modifier and Type | Method and Description |
|---|---|
static BulkOperationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BulkOperationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="create") public static final BulkOperationMode CREATE
@SerializedName(value="update") public static final BulkOperationMode UPDATE
@SerializedName(value="updateIfMatchETag") public static final BulkOperationMode UPDATE_IF_MATCH_ETAG
@SerializedName(value="delete") public static final BulkOperationMode DELETE
public static BulkOperationMode[] values()
for (BulkOperationMode c : BulkOperationMode.values()) System.out.println(c);
public static BulkOperationMode 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 © 2021. All rights reserved.