Berkeley DB
version 4.7.25

com.sleepycat.db
Class MultipleRecnoNIODataEntry

java.lang.Object
  extended by com.sleepycat.db.DatabaseEntry
      extended by com.sleepycat.db.MultipleEntry
          extended by com.sleepycat.db.MultipleRecnoNIODataEntry

public class MultipleRecnoNIODataEntry
extends MultipleEntry

A DatabaseEntry that holds multiple record number/data pairs returned by a single Database or Cursor get call.


Constructor Summary
MultipleRecnoNIODataEntry()
          Construct an entry with no data.
MultipleRecnoNIODataEntry(ByteBuffer data)
          Construct an entry with a given java.nio.ByteBuffer.
 
Method Summary
 boolean next(DatabaseEntry recno, DatabaseEntry data)
          Get the next record number/data pair in the returned set.
 
Methods inherited from class com.sleepycat.db.MultipleEntry
setUserBuffer
 
Methods inherited from class com.sleepycat.db.DatabaseEntry
equals, getData, getDataNIO, getOffset, getPartial, getPartialLength, getPartialOffset, getRecordNumber, getReuseBuffer, getSize, getUserBuffer, getUserBufferLength, hashCode, setData, setData, setDataNIO, setDataNIO, setOffset, setPartial, setPartial, setPartialLength, setPartialOffset, setRecordNumber, setReuseBuffer, setSize
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MultipleRecnoNIODataEntry

public MultipleRecnoNIODataEntry()
Construct an entry with no data. The object must be configured before use with the DatabaseEntry.setDataNIO method.


MultipleRecnoNIODataEntry

public MultipleRecnoNIODataEntry(ByteBuffer data)
Construct an entry with a given java.nio.ByteBuffer. The offset is set to zero; the size is set to the length of the java.nio.ByteBuffer.

Parameters:
data - java.nio.ByteBuffer wrapped by the entry.
Method Detail

next

public boolean next(DatabaseEntry recno,
                    DatabaseEntry data)
Get the next record number/data pair in the returned set. This method may only be called after a successful call to a Database or Cursor get method with this object as the data parameter.

When used with the Queue and Recno access methods, data.getData() will return null for deleted records.

Parameters:
recno - an entry that is set to refer to the next record number in the returned set.

data - an entry that is set to refer to the next data element in the returned set.

Returns:
indicates whether a value was found. A return of false indicates that the end of the set was reached.

Berkeley DB
version 4.7.25

Copyright (c) 1996,2008 Oracle. All rights reserved.