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.
|
public static final ImportMode CreateOrUpdate
public static final ImportMode Create
public static final ImportMode Update
public static final ImportMode UpdateIfMatchETag
public static final ImportMode CreateOrUpdateIfMatchETag
public static final ImportMode Delete
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 © 2021. All rights reserved.