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
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
toValue(
) → String -
Available on ReturnValue, provided by the ReturnValueValueExtension extension
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.