Interface IExcelReportQuery
-
- All Superinterfaces:
com4j.Com4jObject
public interface IExcelReportQuery extends com4j.Com4jObject
For HP use. IExcelReportQuery Interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancel()
Cancels ongoing asynchronous execution.com4j.Com4jObject
execute(int limit, com4j.Holder<java.lang.Integer> pintTruncationStatus, boolean synchronous)
Executes the query.void
setParamValue(java.lang.String name, java.lang.String value)
Set parameter value.
-
-
-
Method Detail
-
setParamValue
void setParamValue(java.lang.String name, java.lang.String value)
Set parameter value.
- Parameters:
name
- Mandatory java.lang.String parameter.value
- Mandatory java.lang.String parameter.
-
execute
com4j.Com4jObject execute(int limit, com4j.Holder<java.lang.Integer> pintTruncationStatus, @DefaultValue("0") boolean synchronous)
Executes the query. Returns the limit status (limit not reached or the kind of limit that was reached).
- Parameters:
limit
- Mandatory int parameter.pintTruncationStatus
- Mandatory Holderparameter. synchronous
- Optional parameter. Default value is false- Returns:
- Returns a value of type com4j.Com4jObject
-
cancel
void cancel()
Cancels ongoing asynchronous execution.
-
-