xApi.xArchive
Class xArchiverSearchResult

java.lang.Object
  extended byxApi.xArchive.xArchiverSearchResult

public class xArchiverSearchResult
extends java.lang.Object

This class holds the results of a archivesystem- query.
---------------------------------------------------------------------------------------------------
Diese Klasse enthält ein Abfrageergebnis des Archivsystems.


Field Summary
 long count
          Contains the number of documents in the result.
 long[] documents
          Contains the resultset of a query.
 long duration
          Contains the duration of the query in ms.
 boolean hasMore
          True = there are more documents than the queryresult contains for the condition.
 
Constructor Summary
xArchiverSearchResult()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

count

public long count
Contains the number of documents in the result.
---------------------------------------------------------------------------------------------------
Die Variable 'count' enthält die Anzahl der gelieferten Dokumente.


hasMore

public boolean hasMore
True = there are more documents than the queryresult contains for the condition.
False = the queryresult contains all documents for the condition.
---------------------------------------------------------------------------------------------------
Die Variable 'hasMore' enthält das Kennzeichen 'weitere Dokumente vorhanden'.
Bei 'true' sind weitere Dokumente im Archivsystem vorhanden, die der Abfragebedingung genügen (die Bedingung muss eingeschränkt werden oder der Scope vergrößert werden).
Bei 'false' sind alle Dokumente geliefert worden.


duration

public long duration
Contains the duration of the query in ms.
---------------------------------------------------------------------------------------------------
Die Variable 'duration' enthält die Dauer der Abfrage in ms.


documents

public long[] documents
Contains the resultset of a query.
It contains an array with the indexes of the documents.
---------------------------------------------------------------------------------------------------
Die Variable 'documents' enthält die Ergebnistabelle.
Geliefert werden die Indizes der gefundenen Dokumente.

Constructor Detail

xArchiverSearchResult

public xArchiverSearchResult()