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

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

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

Methods in org.apache.directory.server.core.partition.impl.btree that return IndexEntry
 IndexEntry<K,O,ID> IndexCursorAdaptor.get()
           
 IndexEntry IndexAssertionEnumeration.next()
           
 IndexEntry IndexEnumeration.next()
           
 IndexEntry IndexAssertionEnumeration.nextElement()
           
 IndexEntry IndexEnumeration.nextElement()
           
 

Methods in org.apache.directory.server.core.partition.impl.btree that return types with arguments of type IndexEntry
 java.util.Iterator<IndexEntry<K,O,ID>> IndexCursorAdaptor.iterator()
           
 

Methods in org.apache.directory.server.core.partition.impl.btree with parameters of type IndexEntry
 void IndexCursorAdaptor.after(IndexEntry<K,O,ID> element)
           
 boolean IndexAssertion.assertCandidate(IndexEntry<K,E,ID> entry)
          Tests to see if a perspective candidate should be returned based on the evaluation of hard coded logic.
 void IndexCursorAdaptor.before(IndexEntry<K,O,ID> element)
           
 

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

Classes in org.apache.directory.server.xdbm that implement IndexEntry
 class ForwardIndexEntry<V,O,ID>
          An index id value pair based on a Tuple which can optionally reference the indexed obj if one has already been loaded.
 class ReverseIndexEntry<V,O,ID>
          An index id value pair which can optionally reference the indexed obj if one has already been loaded.
 

Methods in org.apache.directory.server.xdbm that return IndexEntry
 IndexEntry<K,E,ID> SingletonIndexCursor.get()
           
 IndexEntry<K,E,ID> EmptyIndexCursor.get()
           
 

Methods in org.apache.directory.server.xdbm that return types with arguments of type IndexEntry
 java.util.Iterator<IndexEntry<K,E,ID>> AbstractIndexCursor.iterator()
           
 

Methods in org.apache.directory.server.xdbm with parameters of type IndexEntry
 void SingletonIndexCursor.after(IndexEntry<K,E,ID> element)
           
 void EmptyIndexCursor.after(IndexEntry<K,E,ID> element)
           
 void SingletonIndexCursor.before(IndexEntry<K,E,ID> element)
           
 void EmptyIndexCursor.before(IndexEntry<K,E,ID> element)
           
 void IndexEntry.copy(IndexEntry<V,O,ID> entry)
          Copies the values of another IndexEntry into this IndexEntry.
 void ForwardIndexEntry.copy(IndexEntry<V,O,ID> entry)
           
 void ReverseIndexEntry.copy(IndexEntry<V,O,ID> entry)
           
 

Constructors in org.apache.directory.server.xdbm with parameters of type IndexEntry
SingletonIndexCursor(IndexEntry<K,E,ID> singleton)
           
 

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

Methods in org.apache.directory.server.xdbm.search with parameters of type IndexEntry
 boolean Evaluator.evaluate(IndexEntry<?,E,ID> entry)
          Evaluates a candidate to determine if a filter expression selects it.
 

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

Methods in org.apache.directory.server.xdbm.search.impl that return IndexEntry
 IndexEntry<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> OneLevelScopeCursor.get()
           
 IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> OrCursor.get()
           
 IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> NotCursor.get()
           
 IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> ApproximateCursor.get()
           
 IndexEntry<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> PresenceCursor.get()
           
 IndexEntry<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> AllEntriesCursor.get()
           
 IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> EqualityCursor.get()
           
 IndexEntry<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> SubstringCursor.get()
           
 IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> AndCursor.get()
           
 IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> GreaterEqCursor.get()
           
 IndexEntry<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> SubtreeScopeCursor.get()
           
 IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> LessEqCursor.get()
           
 

Methods in org.apache.directory.server.xdbm.search.impl with parameters of type IndexEntry
 void OneLevelScopeCursor.after(IndexEntry<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void AllEntriesCursor.after(IndexEntry<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 void SubtreeScopeCursor.after(IndexEntry<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void PresenceCursor.after(IndexEntry<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void SubstringCursor.after(IndexEntry<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void OrCursor.after(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void NotCursor.after(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void ApproximateCursor.after(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void EqualityCursor.after(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void AndCursor.after(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void GreaterEqCursor.after(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void LessEqCursor.after(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void OneLevelScopeCursor.before(IndexEntry<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void AllEntriesCursor.before(IndexEntry<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 void SubtreeScopeCursor.before(IndexEntry<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void PresenceCursor.before(IndexEntry<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void SubstringCursor.before(IndexEntry<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void OrCursor.before(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void NotCursor.before(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void ApproximateCursor.before(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void EqualityCursor.before(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void AndCursor.before(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void GreaterEqCursor.before(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 void LessEqCursor.before(IndexEntry<V,org.apache.directory.shared.ldap.entry.ServerEntry,ID> element)
           
 boolean OneLevelScopeEvaluator.evaluate(IndexEntry<?,E,ID> candidate)
          Asserts whether or not a candidate has one level scope while taking alias dereferencing into account.
 boolean SubtreeScopeEvaluator.evaluate(IndexEntry<?,E,ID> candidate)
          Asserts whether or not a candidate has one level scope while taking alias dereferencing into account.
 boolean ApproximateEvaluator.evaluate(IndexEntry<?,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 boolean EqualityEvaluator.evaluate(IndexEntry<?,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 boolean GreaterEqEvaluator.evaluate(IndexEntry<?,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 boolean OrEvaluator.evaluate(IndexEntry<?,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 boolean PresenceEvaluator.evaluate(IndexEntry<?,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 boolean SubstringEvaluator.evaluate(IndexEntry<?,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 boolean AndEvaluator.evaluate(IndexEntry<?,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 boolean LessEqEvaluator.evaluate(IndexEntry<?,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 boolean NotEvaluator.evaluate(IndexEntry<?,org.apache.directory.shared.ldap.entry.ServerEntry,ID> indexEntry)
           
 



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