Package org.nuxeo.ecm.core.storage
Class State.StateDiff
- java.lang.Object
-
- org.nuxeo.ecm.core.storage.State
-
- org.nuxeo.ecm.core.storage.State.StateDiff
-
- All Implemented Interfaces:
Serializable,StateAccessor
- Enclosing class:
- State
public static class State.StateDiff extends State
A diff for aState.Each value is applied to the existing
State. An element can be:- a
State.StateDiff, to be applied on aState, - a
State.ListDiff, to be applied on an array/List, - an actual value to be set (including
null).
- Since:
- 5.9.5
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.nuxeo.ecm.core.storage.State
State.ArraysEntry, State.ArraysEntryIterator, State.ArraysEntrySet, State.ListDiff, State.StateDiff
-
-
Constructor Summary
Constructors Constructor Description StateDiff()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidput(String key, Serializable value)Sets a key/value.
-
-
-
Method Detail
-
put
public void put(String key, Serializable value)
Description copied from class:StateSets a key/value.
-
-