public interface FormatDataHandler
Given the data set of that format, format handler can extract data and present
them as an Iterator of Map. The Map
contains the value of attributes as defined in the data structure. For complex
data, Maps can contain other Iterator of
Maps as well.
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getResult(java.util.Map params,
java.lang.String returnType)
Returns the resulting data extracted from the input.
|
java.lang.Object getResult(java.util.Map params,
java.lang.String returnType)
params - parameters passed containig the context information.returnType - data type of the returned value. This can be passed as null.
If no return type is specified, an Iterator of Map will be returned.returnType parameter.
If the type is available, an instance of that object is created. If no
type is specified an Iterator of Map objects
for the result will be created.
If no data found it can return null. The Map
contains the value of attributes as defined in the data structure.
For complex data, Maps can contain other
Maps as well.