public interface DataTransactionResult
DataHolder
is
accepting DataManipulator
s.Modifier and Type | Interface and Description |
---|---|
static class |
DataTransactionResult.Type
The type of transaction result.
|
Modifier and Type | Method and Description |
---|---|
List<ImmutableValue<?>> |
getRejectedData()
If
Value s were supplied to the operation, this
collection will return any ImmutableValue s which were rejected
by the target DataHolder . |
List<ImmutableValue<?>> |
getReplacedData()
If the operation replaced any
Value s, this returns a collection
of the replaced ImmutableValue s. |
List<ImmutableValue<?>> |
getSuccessfulData()
If any
BaseValue s applied onto a CompositeValueStore were
successful, they'll be stored in the given list. |
DataTransactionResult.Type |
getType()
Get the type of result.
|
DataTransactionResult.Type getType()
List<ImmutableValue<?>> getSuccessfulData()
BaseValue
s applied onto a CompositeValueStore
were
successful, they'll be stored in the given list.List<ImmutableValue<?>> getRejectedData()
Value
s were supplied to the operation, this
collection will return any ImmutableValue
s which were rejected
by the target DataHolder
.List<ImmutableValue<?>> getReplacedData()
Value
s, this returns a collection
of the replaced ImmutableValue
s.