Fields
-
(nullable) addBeforeKeys :K[]
-
Optional array of keys for items located after the items involved in the operation. They are relative to after the operation was completed and not the original array.If null and index not specified then insert at the end.
- Since:
- 6.0.0
-
(nullable) afterKeys :Set<K>
-
Optional set of keys for items located after the items involved in the operation. They are relative to after the operation was completed and not the original array. If null and index not specified then insert at the end.
- Deprecated:
Since Description 6.0.0Use addBeforeKeys instead. addBeforeKeys is an Array instead of a Set.
- Since:
- 6.0.0
-
(nullable) data :D[]
-
Optional data of items involved in the operation
- Since:
- 4.2.0
- Inherited From:
-
(nullable) indexes :number[]
-
Optional indexes of items involved in the operation. They are relative to after the operation was completed and not the original array.
- Since:
- 4.2.0
- Inherited From:
-
keys :Set<K>
-
keys of items involved in the operation
- Since:
- 4.2.0
- Inherited From:
-
(nullable) metadata :Array<ItemMetadata<K>>
-
Optional metadata of items involved in the operation
- Since:
- 4.2.0
- Inherited From:
-
(nullable) parentKeys :K[]
-
Keys of parents for the items involved in the operation.
If this property is undefined, the items involved in the operation have no parent. This is the case for non-hierarchical DataProvider implementatons such as ArrayDataProvider.
If this property has a value, each entry in the array represents the parent key of the corresponding item. A parent key of null indicates that the item is at the root level. TreeDataProvider implementations should always set this property.
- Since:
- 6.0.0