Interface OneToOneObjectGenerator<OBJ>
-
- Type Parameters:
OBJ
- the type of the output object
- All Superinterfaces:
Function<Iterable<? extends Element>,Iterable<? extends OBJ>>
,ObjectGenerator<OBJ>
- All Known Implementing Classes:
CsvGenerator
,EdgeIdExtractor
,EntityIdExtractor
,ExampleDomainObjectGenerator
,GafferPopEdgeGenerator
,GafferPopElementGenerator
,GafferPopVertexGenerator
,MapGenerator
,Neo4jCsvGenerator
,NeptuneCsvGenerator
public interface OneToOneObjectGenerator<OBJ> extends ObjectGenerator<OBJ>
AOneToOneObjectGenerator
takes an inputElement
and converts it into an output object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description OBJ
_apply(Element element)
default Iterable<? extends OBJ>
apply(Iterable<? extends Element> elements)
-