com.sap.tc.logging
Interface LoggingResultSet
- public interface LoggingResultSet
General result set for objects used in Logging. Usually used when making a request, expecting
multiple number of results returned.
|
Field Summary |
static java.lang.String |
version
|
|
Method Summary |
java.lang.Exception |
getException()
Return the specific error occurred for invalid operation(if any). |
java.util.List |
getResults()
Return a list of result nodes in this Result Set |
int |
getSize()
Return the number of result nodes in this Result Set |
boolean |
isEmpty()
Return true if result set is empty (no result node) |
boolean |
isValid()
Return general status if result is either valid(true) or invalid(false) |
version
public static final java.lang.String version
getResults
public java.util.List getResults()
- Return a list of result nodes in this Result Set
isValid
public boolean isValid()
- Return general status if result is either valid(true) or invalid(false)
isEmpty
public boolean isEmpty()
- Return true if result set is empty (no result node)
getSize
public int getSize()
- Return the number of result nodes in this Result Set
getException
public java.lang.Exception getException()
- Return the specific error occurred for invalid operation(if any). Null if none.