filenet.vw.api
Class VWWorkBasket.QueryResults
- java.lang.Object
-
- filenet.vw.api.VWWorkBasket.QueryResults
-
- All Implemented Interfaces:
- java.io.Serializable
- Enclosing class:
- VWWorkBasket
public static final class VWWorkBasket.QueryResults extends java.lang.Object implements java.io.SerializableRepresents the query result as returned by theVWWorkBasket.fetchNextBatch(int, int, java.lang.String, java.lang.String[], java.lang.Object[], java.lang.String, int)method. The last record is returned as a base64-encoded string. The result of the query is in the array of workobjects.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.StringgetLastRecord()Gets the last record in the query results.java.lang.Object[]getWorkObjects()Gets the array of workobjects that is returned by the query.java.lang.StringtoString()Gets a String representation of the query results for the workbasket.
-
-
-
Method Detail
-
getLastRecord
public java.lang.String getLastRecord()
Gets the last record in the query results.- Returns:
- A base64-encoded String containing the last record of the query results.
-
getWorkObjects
public java.lang.Object[] getWorkObjects()
Gets the array of workobjects that is returned by the query.- Returns:
- An Object array of workobjects.
-
toString
public java.lang.String toString()
Gets a String representation of the query results for the workbasket.- Overrides:
toStringin classjava.lang.Object- Returns:
- A String containing the query results for the workbasket.
-
-