JXTA

Uses of Class
net.jxta.impl.xindice.core.data.Key

Packages that use Key
net.jxta.impl.cm   
net.jxta.impl.xindice.core.data   
net.jxta.impl.xindice.core.filer   
net.jxta.impl.xindice.core.indexer   
 

Uses of Key in net.jxta.impl.cm
 

Fields in net.jxta.impl.cm declared as Key
 Key SrdiIndex.SrdiIndexRecord.key
           
 

Constructors in net.jxta.impl.cm with parameters of type Key
SrdiIndex.SrdiIndexRecord(Key key, List<SrdiIndex.Entry> list)
          SrdiIndex record
 

Uses of Key in net.jxta.impl.xindice.core.data
 

Methods in net.jxta.impl.xindice.core.data that return Key
 Key Record.getKey()
          getKey returns the Record's Key.
 Key RecordSet.getNextKey()
          getNextKey returns the next Record's Key, and skips the RecordSet ahead to the next Record.
 

Methods in net.jxta.impl.xindice.core.data with parameters of type Key
 void Record.setKey(Key key)
          setKey sets the Record's Key.
 

Constructors in net.jxta.impl.xindice.core.data with parameters of type Key
Record(Key key, Value value)
           
Record(Key key, Value value, Map meta)
           
 

Uses of Key in net.jxta.impl.xindice.core.filer
 

Methods in net.jxta.impl.xindice.core.filer that return Key
 Key Paged.Page.getKey()
           
 

Methods in net.jxta.impl.xindice.core.filer with parameters of type Key
 boolean MemFiler.deleteRecord(Key key)
           
 boolean Filer.deleteRecord(Key key)
          deleteRecord removes a Record from the Filer based on the specified Key.
 boolean BTreeFiler.deleteRecord(Key key)
           
 Record MemFiler.readRecord(Key key)
           
 Record Filer.readRecord(Key key)
          readRecord returns a Record from the Filer based on the specified Key.
 Record BTreeFiler.readRecord(Key key)
           
 void Paged.PageHeader.setKey(Key key)
           
 void Paged.Page.setKey(Key key)
           
 long MemFiler.writeRecord(Key key, Value value)
           
 long Filer.writeRecord(Key key, Value value)
          writeRecord writes a Value to the Filer based on the specified Key.
 long BTreeFiler.writeRecord(Key key, Value value)
           
 long BTreeFiler.writeRecord(Key key, Value value, long lifetime, long expiration)
           
 

Constructor parameters in net.jxta.impl.xindice.core.filer with type arguments of type Key
MemFiler(Map<Key,Record> hashTable)
           
MemFiler(Map<Key,Record> hashTable, boolean readOnly)
           
 

Uses of Key in net.jxta.impl.xindice.core.indexer
 

Methods in net.jxta.impl.xindice.core.indexer with parameters of type Key
 void Indexer.add(Key key, long pos)
          add adds a Document to the Indexer.
 void NameIndexer.add(Key key, long pos)
           
 void Indexer.remove(Key key)
          remove removes all references to the specified Key from the Indexer.
 void NameIndexer.remove(Key key)
           
 


JXSE