public enum SyncDeltaType extends Enum<SyncDeltaType>
Enum Constant and Description |
---|
CREATE
The change represents a CREATE in the resource.
|
CREATE_OR_UPDATE
The change represents either a create or an update in the resource.
|
DELETE
The change represents a DELETE in the resource.
|
UPDATE
The change represents a UPDATE in the resource.
|
Modifier and Type | Method and Description |
---|---|
static SyncDeltaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SyncDeltaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyncDeltaType CREATE_OR_UPDATE
public static final SyncDeltaType DELETE
public static final SyncDeltaType CREATE
CREATE_OR_UPDATE
public static final SyncDeltaType UPDATE
CREATE_OR_UPDATE
public static SyncDeltaType[] values()
for (SyncDeltaType c : SyncDeltaType.values()) System.out.println(c);
public static SyncDeltaType 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 © 2019. All rights reserved.