Uses of Interface
org.apache.directory.server.xdbm.IndexCursor

Packages that use IndexCursor
org.apache.directory.server.core.partition.impl.btree   
org.apache.directory.server.core.partition.impl.btree.jdbm   
org.apache.directory.server.xdbm   
org.apache.directory.server.xdbm.search   
org.apache.directory.server.xdbm.search.impl   
 

Uses of IndexCursor in org.apache.directory.server.core.partition.impl.btree
 

Classes in org.apache.directory.server.core.partition.impl.btree that implement IndexCursor
 class IndexCursorAdaptor<K,O>
          A Cursor which adapts an underlying Tuple based Cursor to one which returns IndexEntry objects rather than tuples.
 

Methods in org.apache.directory.server.core.partition.impl.btree that return IndexCursor
abstract  IndexCursor<java.lang.Long,ServerEntry> BTreePartition.list(java.lang.Long id)
           
 

Constructors in org.apache.directory.server.core.partition.impl.btree with parameters of type IndexCursor
ServerEntryCursorAdaptor(Partition db, IndexCursor<java.lang.Long,ServerEntry> indexCursor)
           
 

Uses of IndexCursor in org.apache.directory.server.core.partition.impl.btree.jdbm
 

Methods in org.apache.directory.server.core.partition.impl.btree.jdbm that return IndexCursor
 IndexCursor<K,O> JdbmIndex.forwardCursor()
           
 IndexCursor<K,O> JdbmIndex.forwardCursor(K key)
           
 IndexCursor<java.lang.Long,ServerEntry> JdbmPartition.list(java.lang.Long id)
           
 IndexCursor<java.lang.Long,E> JdbmStore.list(java.lang.Long id)
          Gets an IndexEntry Cursor over the child nodes of an entry.
 IndexCursor<K,O> JdbmIndex.reverseCursor()
           
 IndexCursor<K,O> JdbmIndex.reverseCursor(java.lang.Long id)
           
 

Uses of IndexCursor in org.apache.directory.server.xdbm
 

Classes in org.apache.directory.server.xdbm that implement IndexCursor
 class AbstractIndexCursor<K,E>
          An abstract TupleCursor.
 class EmptyIndexCursor<K,E>
          An empty Cursor implementation.
 class SingletonIndexCursor<K,E>
          A Cursor over a single element.
 

Methods in org.apache.directory.server.xdbm that return IndexCursor
 IndexCursor<K,O> Index.forwardCursor()
           
 IndexCursor<K,O> Index.forwardCursor(K key)
           
 IndexCursor<java.lang.Long,E> Store.list(java.lang.Long id)
          Gets an IndexEntry Cursor over the child nodes of an entry.
 IndexCursor<K,O> Index.reverseCursor()
           
 IndexCursor<K,O> Index.reverseCursor(java.lang.Long id)
           
 

Uses of IndexCursor in org.apache.directory.server.xdbm.search
 

Methods in org.apache.directory.server.xdbm.search that return IndexCursor
 IndexCursor<java.lang.Long,E> SearchEngine.cursor(org.apache.directory.shared.ldap.name.LdapDN base, org.apache.directory.shared.ldap.message.AliasDerefMode aliasDerefMode, org.apache.directory.shared.ldap.filter.ExprNode filter, javax.naming.directory.SearchControls searchCtls)
          Conducts a search on a database.
 

Uses of IndexCursor in org.apache.directory.server.xdbm.search.impl
 

Classes in org.apache.directory.server.xdbm.search.impl that implement IndexCursor
 class AllEntriesCursor
          A Cursor over all entries in a partition which returns IndexEntries.
 class AndCursor<V>
          A Cursor returning candidates satisfying a logical conjunction expression.
 class ApproximateCursor<V>
          A Cursor over entry candidates matching an approximate assertion filter.
 class EqualityCursor<V>
          A Cursor over entry candidates matching an equality assertion filter.
 class GreaterEqCursor<V>
          A Cursor over entry candidates matching a GreaterEq assertion filter.
 class LessEqCursor<V>
          A Cursor over entry candidates matching a LessEq assertion filter.
 class NotCursor<V>
          A Cursor returning candidates satisfying a logical negation expression.
 class OneLevelScopeCursor
          A Cursor over entries satisfying one level scope constraints with alias dereferencing considerations when enabled during search.
 class OrCursor<V>
          A Cursor returning candidates satisfying a logical disjunction expression.
 class PresenceCursor
          A returning candidates satisfying an attribute presence expression.
 class SubstringCursor
          A Cursor traversing candidates matching a Substring assertion expression.
 class SubtreeScopeCursor
          A Cursor over entries satisfying scope constraints with alias dereferencing considerations.
 

Methods in org.apache.directory.server.xdbm.search.impl that return IndexCursor
 IndexCursor<?,ServerEntry> CursorBuilder.build(org.apache.directory.shared.ldap.filter.ExprNode node)
           
 IndexCursor<java.lang.Long,ServerEntry> DefaultSearchEngine.cursor(org.apache.directory.shared.ldap.name.LdapDN base, org.apache.directory.shared.ldap.message.AliasDerefMode aliasDerefMode, org.apache.directory.shared.ldap.filter.ExprNode filter, javax.naming.directory.SearchControls searchCtls)
           
 

Constructors in org.apache.directory.server.xdbm.search.impl with parameters of type IndexCursor
AndCursor(IndexCursor<V,ServerEntry> wrapped, java.util.List<Evaluator<? extends org.apache.directory.shared.ldap.filter.ExprNode,ServerEntry>> evaluators)
           
 

Constructor parameters in org.apache.directory.server.xdbm.search.impl with type arguments of type IndexCursor
OrCursor(java.util.List<IndexCursor<V,ServerEntry>> cursors, java.util.List<Evaluator<? extends org.apache.directory.shared.ldap.filter.ExprNode,ServerEntry>> evaluators)
           
 



Copyright © 2003-2009 Apache Software Foundation. All Rights Reserved.