| java.lang.Object org.drools.QueryResult
QueryResult | public class QueryResult (Code) | | |
Method Summary | |
public Object | get(int i) | public Object | get(String identifier) Return the Object for the given Declaration identifer. | public Object | get(Declaration declaration) Return the Object for the given Declaration. | public Map | getDeclarations() Return a map of Declarations where the key is the identifier and the value
is the Declaration. | public FactHandle[] | getFactHandles() Return the FactHandles for the Tuple. | public int | size() The size of the Tuple; i.e. |
get | public Object get(int i)(Code) | | Returns the Object for int position in the Tuple
Parameters: i - The Object |
get | public Object get(String identifier)(Code) | | Return the Object for the given Declaration identifer.
Parameters: identifier - The Object |
get | public Object get(Declaration declaration)(Code) | | Return the Object for the given Declaration.
Parameters: identifier - The Object |
getDeclarations | public Map getDeclarations()(Code) | | Return a map of Declarations where the key is the identifier and the value
is the Declaration.
The Map of Declarations. |
getFactHandles | public FactHandle[] getFactHandles()(Code) | | Return the FactHandles for the Tuple.
|
size | public int size()(Code) | | The size of the Tuple; i.e. the number of columns (FactHandles) in this row result.
|
|
|