Package com.vaadin.flow.internal.change
Class MapRemoveChange
- java.lang.Object
-
- com.vaadin.flow.internal.change.NodeChange
-
- com.vaadin.flow.internal.change.NodeFeatureChange
-
- com.vaadin.flow.internal.change.MapRemoveChange
-
- All Implemented Interfaces:
Serializable
public class MapRemoveChange extends NodeFeatureChange
Change describing a value removed from a map.For internal use only. May be renamed or removed in a future release.
- Since:
- 1.0
- Author:
- Vaadin Ltd
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MapRemoveChange(NodeMap map, String key)Creates a new remove change.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKey()Gets the removed key.protected voidpopulateJson(elemental.json.JsonObject json, ConstantPool constantPool)Overridden by subclasses to populate a JSON object when serializing.-
Methods inherited from class com.vaadin.flow.internal.change.NodeFeatureChange
getFeature
-
Methods inherited from class com.vaadin.flow.internal.change.NodeChange
getNode, toJson
-
-
-
-
Method Detail
-
getKey
public String getKey()
Gets the removed key.- Returns:
- the removed key
-
populateJson
protected void populateJson(elemental.json.JsonObject json, ConstantPool constantPool)Description copied from class:NodeChangeOverridden by subclasses to populate a JSON object when serializing.- Overrides:
populateJsonin classNodeFeatureChange- Parameters:
json- the json object to populateconstantPool- the constant pool to use for serializing constant pool references
-
-