Uses of Interface
messif.objects.util.ObjectMatcher

Packages that use ObjectMatcher
messif.buckets.split Bucket splitting support. 
messif.buckets.split.impl Implementation of various bucket splitting policies. 
messif.objects.util Various utilities for working with collections of objects. 
 

Uses of ObjectMatcher in messif.buckets.split
 

Classes in messif.buckets.split that implement ObjectMatcher
 class SplitPolicy
          This class defines an abstract policy for bucket splitting.
 

Uses of ObjectMatcher in messif.buckets.split.impl
 

Classes in messif.buckets.split.impl that implement ObjectMatcher
 class SplitPolicyBallPartitioning
          This class a ball-partitioning policy for bucket splitting.
 class SplitPolicyExcludedMiddlePartitioning
          This class an excluded-middle ball-partitioning policy for bucket splitting.
 class SplitPolicyGeneralizedHyperplane
          This class defines a policy for bucket splitting based on the generalized hyperplane partitioning.
 class SplitPolicyMultiWayBallPartitioning
          This class is a multi-way ball-partitioning policy for bucket splitting.
 class SplitPolicyVoronoiPartitioning
          This class implements Voronoi-like partitioning policy.
 

Uses of ObjectMatcher in messif.objects.util
 

Methods in messif.objects.util with parameters of type ObjectMatcher
 GenericMatchingObjectList<E> AbstractObjectIterator.getMatchingObjects(ObjectMatcher<? super E> matcher)
          Returns matching objects.
 GenericMatchingObjectList<E> AbstractObjectIterator.getMatchingObjects(ObjectMatcher<? super E> matcher, boolean removeMatching)
          Returns matching objects.
 GenericMatchingObjectList<E> AbstractObjectIterator.getMatchingObjects(ObjectMatcher<? super E> matcher, boolean removeMatching, int whoStays)
          Returns matching objects.
 GenericMatchingObjectList<E> AbstractObjectIterator.getMatchingObjects(ObjectMatcher<? super E> matcher, boolean removeMatching, int[] whoStays)
          Get matching objects Method returns all objects that satisfy the matching contraints specified by matcher and deletes matching objects from the bucket when required.