Interface OneToManyElementGenerator<OBJ>
-
- Type Parameters:
OBJ
- the type of the input objects
- All Superinterfaces:
ElementGenerator<OBJ>
,Function<Iterable<? extends OBJ>,Iterable<? extends Element>>
- All Known Implementing Classes:
CardinalityEntityGenerator
,HllSketchEntityGenerator
,HyperLogLogPlusEntityGenerator
,IndexGenerator
,RoadTrafficCsvElementGenerator
,RoadTrafficElementGenerator
,RoadTrafficStringElementGenerator
public interface OneToManyElementGenerator<OBJ> extends ElementGenerator<OBJ>
AOneToManyElementGenerator
takes an input object and converts it into multiple outputElement
s.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Iterable<Element>
_apply(OBJ domainObject)
default Iterable<? extends Element>
apply(Iterable<? extends OBJ> domainObjects)
-