Interface PartitionSortedBag<T>
-
- All Superinterfaces:
PartitionBag<T>,PartitionIterable<T>,PartitionOrderedIterable<T>,PartitionReversibleIterable<T>,PartitionSortedIterable<T>
- All Known Subinterfaces:
PartitionImmutableSortedBag<T>,PartitionMutableSortedBag<T>
public interface PartitionSortedBag<T> extends PartitionBag<T>, PartitionSortedIterable<T>, PartitionReversibleIterable<T>
- Since:
- 4.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SortedBag<T>getRejected()SortedBag<T>getSelected()
-
-
-
Method Detail
-
getSelected
SortedBag<T> getSelected()
- Specified by:
getSelectedin interfacePartitionBag<T>- Specified by:
getSelectedin interfacePartitionIterable<T>- Specified by:
getSelectedin interfacePartitionOrderedIterable<T>- Specified by:
getSelectedin interfacePartitionReversibleIterable<T>- Specified by:
getSelectedin interfacePartitionSortedIterable<T>
-
getRejected
SortedBag<T> getRejected()
- Specified by:
getRejectedin interfacePartitionBag<T>- Specified by:
getRejectedin interfacePartitionIterable<T>- Specified by:
getRejectedin interfacePartitionOrderedIterable<T>- Specified by:
getRejectedin interfacePartitionReversibleIterable<T>- Specified by:
getRejectedin interfacePartitionSortedIterable<T>
-
-