Interface IModifiableByName<V,R>
- All Superinterfaces:
IModifiable<Integer,,V, R> IModifiableByIndex<V,R>
- All Known Subinterfaces:
IModifiableByColumn<R>
- All Known Implementing Classes:
DataColumnCollection
IModifiableByName. Modifiable, with additional string (name) indexer.
Created by Martin Cooper on 15/07/2017.
-
Method Summary
Methods inherited from interface com.github.martincooper.datatable.IModifiable
add, insert, remove, replace
-
Method Details
-
replace
Replaces the old item with the new item.- Parameters:
itemName- The item to be replaced.value- The new item.- Returns:
- Returns a new collection with the item replaced.
-
insert
Inserts an item after an existing item.- Parameters:
itemName- The item to be inserted after.value- The new item.- Returns:
- Returns a new collection with the item inserted.
-
remove
Removes a named item.- Parameters:
itemName- The item to be removed.- Returns:
- Returns a new collection with the item removed.
-