Class DefaultDynOExtractor<T extends DynO>
java.lang.Object
overit.geocallapp.utilities.core.data.DynOExtractor<T>
overit.geocallapp.utilities.core.data.DefaultDynOExtractor<T>
- Type Parameters:
T- the type ofDynOobjects this extractor accepts as input
Default implementation of
This extractor provides the standard mechanism for extracting a
DynOExtractor for creating Map from a specific DynO. This extractor provides the standard mechanism for extracting a
Map of objects from a specific DynO of the appropriate class type. - Since:
- 1.2
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCreates aMapfrom the provided object of type T.
Implementation-specific logic determines how the object is used to construct the map.static <T extends DynO>
DefaultDynOExtractor<T> Factory method to create a newDefaultDynOExtractorinstance.Methods inherited from class overit.geocallapp.utilities.core.data.DynOExtractor
initialize
-
Constructor Details
-
DefaultDynOExtractor
public DefaultDynOExtractor()
-
-
Method Details
-
makeExtractor
Factory method to create a newDefaultDynOExtractorinstance.- Type Parameters:
T- the type ofDynOobjects the extract accepts as input- Returns:
- a new configured
DefaultDynOExtractorinstance
-
extract
Description copied from class:DynOExtractorCreates aMapfrom the provided object of type T.
Implementation-specific logic determines how the object is used to construct the map.- Specified by:
extractin classDynOExtractor<T extends DynO>- Parameters:
object- the object to use for map creation- Returns:
- the
Mapobject of type T
-