public interface MapChangeSet<T>
MapChangeSet is passed to the MapChangeListener which is registered
by RealmMap.addChangeListener(MapChangeListener).
| Modifier and Type | Method and Description |
|---|---|
T[] |
getChanges()
Array containing the keys that have been modified in the previous version of the map.
|
T[] |
getDeletions()
The number of entries that have been deleted in the previous version of the map.
|
T[] |
getInsertions()
Array containing the keys that have been inserted in the previous version of the map.
|
boolean |
isEmpty()
Whether the change set is empty or not.
|
T[] getDeletions()
T[] getInsertions()
T[] getChanges()
boolean isEmpty()