Open SiteSearch 4.1.1
Final

ORG.oclc.db
Class SortResult

java.lang.Object
  |
  +--ORG.oclc.db.SortResult

public class SortResult
extends Object

SortResult is the controlling class for building a sort key from a record. SortResult must be extended to actually get any data in a sort key.


Field Summary
 String dbname
          String data type containing the dbname of the record within the resultset.
 int offset
          integer data type containing the offset into the original result set for the record.
 int reclen
          integer data type containing the length of the original record for dedup record order if requested.
 
Constructor Summary
SortResult(int offset, int reclen)
           
SortResult(int offset, int reclen, String dbname)
           
 
Method Summary
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

offset

public int offset
integer data type containing the offset into the original result set for the record.

reclen

public int reclen
integer data type containing the length of the original record for dedup record order if requested.

dbname

public String dbname
String data type containing the dbname of the record within the resultset.
Constructor Detail

SortResult

public SortResult(int offset,
                  int reclen)

SortResult

public SortResult(int offset,
                  int reclen,
                  String dbname)
Method Detail

toString

public String toString()
Overrides:
toString in class Object

Open SiteSearch 4.1.1
Final