|
Errai 3.0.1-SNAPSHOT | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SyncRequestOperation.Type>
org.jboss.errai.jpa.sync.client.shared.SyncRequestOperation.Type
public static enum SyncRequestOperation.Type
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SyncRequestOperation.Type NEW
public static final SyncRequestOperation.Type DELETED
public static final SyncRequestOperation.Type UPDATED
public static final SyncRequestOperation.Type UNCHANGED
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
Errai 3.0.1-SNAPSHOT | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |