ReturnValue enum
Use this parameter if you want to get the attribute name-value pairs before
or after they are modified. For PUT
operations, the possible
parameter values are NONE
(default) or ALL_OLD
.
For update operations, the possible parameter values are NONE
(default) or ALL_OLD
, UPDATED_OLD
,
ALL_NEW
or UPDATED_NEW
.
NONE
: Nothing is returned.ALL_OLD
: Returns the attributes of the item as they were before the operation.UPDATED_OLD
: Returns the values of the updated attributes, only, as they were before the operation.ALL_NEW
: Returns all the attributes and their new values after the operation.UPDATED_NEW
: Returns the values of the updated attributes, only, as they are after the operation.
- Inheritance
- Available extensions
Values
- none → const ReturnValue
- allOld → const ReturnValue
- updatedOld → const ReturnValue
- allNew → const ReturnValue
- updatedNew → const ReturnValue
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ReturnValue> - A constant List of the values in this enum, in order of their declaration.