Uses of Class
org.apache.directory.server.xdbm.Tuple

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

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

Methods in org.apache.directory.server.core.partition.impl.btree that return Tuple
 Tuple ValueArrayCursor.get()
           
 

Methods in org.apache.directory.server.core.partition.impl.btree with parameters of type Tuple
 void ValueArrayCursor.after(Tuple element)
           
 void ValueArrayCursor.before(Tuple element)
           
 

Constructor parameters in org.apache.directory.server.core.partition.impl.btree with type arguments of type Tuple
IndexCursorAdaptor(Cursor<Tuple> wrappedCursor, boolean forwardIndex)
          Creates an IndexCursorAdaptor which wraps and adapts a Cursor from a table to one which returns an IndexEntry.
IndexEnumeration(javax.naming.NamingEnumeration<Tuple> list)
           
IndexEnumeration(javax.naming.NamingEnumeration<Tuple> list, boolean swapKeyVal)
           
IndexEnumeration(javax.naming.NamingEnumeration<Tuple> list, boolean swapKeyVal, java.util.regex.Pattern regex)
           
 

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

Methods in org.apache.directory.server.core.partition.impl.btree.jdbm that return Tuple
 Tuple<K,V> KeyTupleBTreeCursor.get()
           
 Tuple<K,V> KeyTupleAvlCursor.get()
           
 Tuple<K,DupsContainer<V>> DupsContainerCursor.get()
           
 

Methods in org.apache.directory.server.core.partition.impl.btree.jdbm that return types with arguments of type Tuple
 Cursor<Tuple<K,V>> JdbmTable.cursor()
           
 Cursor<Tuple<K,V>> JdbmTable.cursor(K key)
           
 

Methods in org.apache.directory.server.core.partition.impl.btree.jdbm with parameters of type Tuple
 void DupsContainerCursor.after(Tuple<K,DupsContainer<V>> element)
           
 void KeyTupleBTreeCursor.after(Tuple<K,V> element)
           
 void KeyTupleAvlCursor.after(Tuple<K,V> element)
           
 void DupsContainerCursor.before(Tuple<K,DupsContainer<V>> element)
          Positions this Cursor before the key of the supplied tuple.
 void KeyTupleBTreeCursor.before(Tuple<K,V> element)
          Positions this Cursor over the same keys before the value of the supplied valueTuple.
 void KeyTupleAvlCursor.before(Tuple<K,V> element)
          Positions this Cursor over the same keys before the value of the supplied element Tuple.
 

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

Methods in org.apache.directory.server.xdbm that return Tuple
 Tuple ForwardIndexEntry.getTuple()
           
 Tuple IndexEntry.getTuple()
          Gets access to the underlying tuple.
 Tuple ReverseIndexEntry.getTuple()
           
 Tuple<K,V> Tuple.setBoth(K key, V value)
          Sets both the key and the value for this Tuple in one call and returns this Tuple object.
 Tuple<K,V> Tuple.setBoth(Tuple<K,V> tupleToCopy)
          Sets both the key and the value for this Tuple in one call and returns this Tuple object.
 Tuple<K,V> Tuple.setKey(K key)
          Sets the key for this Tuple.
 Tuple<K,V> Tuple.setValue(V value)
          Sets the value for this Tuple.
 

Methods in org.apache.directory.server.xdbm that return types with arguments of type Tuple
 Cursor<Tuple<K,V>> Table.cursor()
          Creates a Cursor that traverses Tuples in a Table.
 Cursor<Tuple<K,V>> Table.cursor(K key)
          Creates a Cursor that traverses Table Tuples for the same key.
 java.util.Iterator<Tuple<K,V>> AbstractTupleCursor.iterator()
           
 

Methods in org.apache.directory.server.xdbm with parameters of type Tuple
 Tuple<K,V> Tuple.setBoth(Tuple<K,V> tupleToCopy)
          Sets both the key and the value for this Tuple in one call and returns this Tuple object.
 void ReverseIndexEntry.setTuple(Tuple<java.lang.Long,V> tuple, O obj)
          Sets the Tuple value represented by this ReverseIndexEntry optionally setting the obj associated with the id if one was loaded from the master table.
 void ForwardIndexEntry.setTuple(Tuple<V,java.lang.Long> tuple, O entry)
          Sets the key value tuple represented by this ForwardIndexEntry optionally setting the obj associated with the id if one was loaded from the master table.
 



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