public static enum SyncRequestOperation.Type extends Enum<SyncRequestOperation.Type>
Enum Constant and Description |
---|
DELETED
Indicates that an entity instance that the remote side already knows
about has been deleted by the requesting side.
|
NEW
Indicates an entity instance that was created without the knowledge of
the remote system the change list is being sent to.
|
UNCHANGED
Indicates an entity instance that has not changed since the last sync request.
|
UPDATED
Indicates an entity instance whose identity is already known to the
system the change list is being sent to.
|
Modifier and Type | Method and Description |
---|---|
static SyncRequestOperation.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SyncRequestOperation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyncRequestOperation.Type NEW
public static final SyncRequestOperation.Type DELETED
public static final SyncRequestOperation.Type UPDATED
public static final SyncRequestOperation.Type UNCHANGED
public static SyncRequestOperation.Type[] values()
for (SyncRequestOperation.Type c : SyncRequestOperation.Type.values()) System.out.println(c);
public static SyncRequestOperation.Type 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 © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.