public enum ImportMode extends Enum<ImportMode>
| Enum Constant and Description |
|---|
Create |
CreateOrUpdate |
CreateOrUpdateIfMatchETag |
Delete |
DeleteIfMatchETag |
Update |
UpdateIfMatchETag |
| Modifier and Type | Method and Description |
|---|---|
static ImportMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="createOrUpdate") public static final ImportMode CreateOrUpdate
@SerializedName(value="create") public static final ImportMode Create
@SerializedName(value="update") public static final ImportMode Update
@SerializedName(value="updateIfMatchETag") public static final ImportMode UpdateIfMatchETag
@SerializedName(value="createOrUpdateIfMatchETag") public static final ImportMode CreateOrUpdateIfMatchETag
@SerializedName(value="delete") public static final ImportMode Delete
@SerializedName(value="deleteIfMatchETag") public static final ImportMode DeleteIfMatchETag
public static ImportMode[] values()
for (ImportMode c : ImportMode.values()) System.out.println(c);
public static ImportMode 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 © 2024. All rights reserved.