Uses of Interface
jaggregate.ContractibleSequence

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
<R> ContractibleSequence<R>
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.
 



© Copyright 2004-2008 Paul R. Holser, Jr. All rights reserved. Licensed under the Academic Free License version 3.0. pholser@alumni.rice.edu