public interface ItemIf
Modifier and Type | Method and Description |
---|---|
ItemDataObjectBinderIf |
getBinder()
If for whatever reason you need to override the binder used at the InventoryCollector, you can replace
it with the one returned here.
|
java.lang.Class |
getBoundToClass()
The class the parsed/collected data will be converted into.
|
ItemDataFormat |
getCollectedDataFormat()
The format the data retrieved in will be in.
|
MappedItemListener |
getItemListener()
If for whatever reason you need to override the persistor used at the InventoryCollector, you can replace
it with the one returned here.
|
java.lang.String |
getLabel()
Description of the data being retrieved, used mainly for logging purposes.
|
java.lang.String |
getName()
Used primarily for logging purposes, but better used to uniquely identify the data to retrieve,
e.g.
|
ItemDataFormat |
getParsedDataFormat()
The format the data after being parsed will be in.
|
ItemParserIf |
getParser()
If for whatever reason you need to override the parser used at the InventoryCollector, you can replace
it with the one returned here.
|
java.lang.String getName()
java.lang.String getLabel()
ItemDataFormat getCollectedDataFormat()
ItemDataFormat getParsedDataFormat()
java.lang.Class getBoundToClass()
ItemParserIf getParser()
ItemDataObjectBinderIf getBinder()
MappedItemListener getItemListener()