|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ContractibleSequence | |
---|---|
jaggregate | Jaggregate is a J2SE 5.0-aware collections library that is modeled after the ANSI Smalltalk collection protocols. |
Uses of ContractibleSequence in jaggregate |
---|
Classes in jaggregate that implement ContractibleSequence | |
---|---|
class |
NaturallySortedCollection<E extends Comparable<? super E>>
Represents a variable-sized collection of objects whose elements are ordered based on the natural ordering of its elements, as defined by the interface Comparable . |
class |
OrderedCollection<E>
Represents an ordered, variable-sized collection of objects, where elements may be added, removed, or inserted, and can be accessed using external integer keys. |
class |
SortedCollection<E>
Represents a variable-sized collection of objects whose elements are ordered based on a sort order. |
Methods in jaggregate that return ContractibleSequence | ||
---|---|---|
|
ContractibleSequence.collect(UnaryFunctor<? super E,? extends R> transformer)
Evaluates the given transformer for each element of this collection, with the element as the parameter, and answers a new collection containing the results of these evaluations. |
|
ContractibleSequence<E> |
ContractibleSequence.reject(UnaryCondition<? super E> discriminator)
Answers a new collection which contains only the elements in this collection which cause the given discriminator to answer false . |
|
ContractibleSequence<E> |
ContractibleSequence.select(UnaryCondition<? super E> discriminator)
Answers a new collection which contains only the elements in this collection which cause the given discriminator to answer true . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |