|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sap.ip.me.api.smartsync.RowChangeActionType
This represents the action performed on the row. The action can be of the following type.
Example:
When delta is the SyncBoOutDelta.
MeIterator it = delta.getRowChanges();
while (it.hasNext()) {
RowChange row = (RowChange) it.next();
//All changed fields are contained in the iterator
RowChangeActionType actionType = row.getAction();
//actionType represents the action on the row.
//e.g actionType will have the value RowChangeActionType.MODIFY if the row was modified.
........................
........................
}
Field Summary | |
static RowChangeActionType |
DELETE
Delete action against the RowChange object |
static RowChangeActionType |
ERROR
Deprecated. No RowChange should be marked as "Nooper" |
static RowChangeActionType |
INSERT
Insert action against the RowChange object |
static RowChangeActionType |
MODIFY
Modify action against the RowChange object |
static RowChangeActionType |
NOOPER
Deprecated. No RowChange should be marked as "Nooper" |
static RowChangeActionType |
REPLACE
Deprecated. No RowChange should be marked as "Replace" |
Method Summary | |
static RowChangeActionType |
forString(java.lang.String string)
Description of the Method |
static RowChangeActionType |
forXMLString(java.lang.String string)
|
RowChangeActionType |
getMerged(RowChangeActionType actionToMerge)
Gets the merged attribute of the RowChangeActionType object |
java.lang.String |
toString()
Returns the String representation of this type Either of the following: "I","M","R","D","N","E" |
java.lang.String |
toXMLString()
Returns the long String presentation of the action for "I","M","D"; null for other |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static RowChangeActionType INSERT
public static RowChangeActionType MODIFY
public static RowChangeActionType DELETE
public static RowChangeActionType REPLACE
public static RowChangeActionType NOOPER
public static RowChangeActionType ERROR
Method Detail |
public RowChangeActionType getMerged(RowChangeActionType actionToMerge)
actionToMerge
- Description of the Parameter
public static RowChangeActionType forString(java.lang.String string)
string
- String value equivalent to get the corresponding RowChangeActionType.
public static RowChangeActionType forXMLString(java.lang.String string)
public java.lang.String toString()
public java.lang.String toXMLString()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |