- update(E, Object) - Method in class de.scrum_master.util.UpdateableTreeSet
-
Performs an immediate update on a single element so as to trigger its re-ordering
within the collection.
- update(E) - Method in class de.scrum_master.util.UpdateableTreeSet
-
- update() - Method in interface de.scrum_master.util.UpdateableTreeSet.Updateable
-
Update method for elements which do not need to be given new values, but have a way
of updating themselves in another way.
- update(Object) - Method in interface de.scrum_master.util.UpdateableTreeSet.Updateable
-
Update method for elements which need one or more new values.
- UpdateableTreeSet<E extends UpdateableTreeSet.Updateable> - Class in de.scrum_master.util
-
This class is just a thin layer around its parent class, adding an element updating and re-sorting
feature which works as follows:
- UpdateableTreeSet() - Constructor for class de.scrum_master.util.UpdateableTreeSet
-
- UpdateableTreeSet(Collection<? extends E>) - Constructor for class de.scrum_master.util.UpdateableTreeSet
-
- UpdateableTreeSet(Comparator<? super E>) - Constructor for class de.scrum_master.util.UpdateableTreeSet
-
- UpdateableTreeSet(SortedSet<E>) - Constructor for class de.scrum_master.util.UpdateableTreeSet
-
- UpdateableTreeSet.Updateable - Interface in de.scrum_master.util
-
UpdateableTreeSet elements must implement this interface in order to provide a structured way
of updating themselves at the right moment during an update operation, i.e.
- updateAll() - Method in class de.scrum_master.util.UpdateableTreeSet
-
Updates the total sort order of the set by removing and re-adding all elements.
- updateMarked() - Method in class de.scrum_master.util.UpdateableTreeSet
-
Performs
a bulk removal on all elements previously marked for removal,
a bulk update on all elements previously marked for update so as to trigger
their re-sorting within the collection.