Uses of Class
uk.gov.gchq.gaffer.data.generator.MapGenerator.Builder
-
Packages that use MapGenerator.Builder Package Description uk.gov.gchq.gaffer.data.generator Generator classes for transforming between Gaffer elements and domain objects. -
-
Uses of MapGenerator.Builder in uk.gov.gchq.gaffer.data.generator
Methods in uk.gov.gchq.gaffer.data.generator that return MapGenerator.Builder Modifier and Type Method Description MapGenerator.Builder
MapGenerator.Builder. constant(String key, String value)
Stores any constants specific to a givenElement
.MapGenerator.Builder
MapGenerator.Builder. destination(String mapKey)
Stores the Destination Vertex of anEdge
MapGenerator.Builder
MapGenerator.Builder. direction(String mapKey)
Stores the Direction flag, indicating whether or not theEdge
is directed.MapGenerator.Builder
MapGenerator.Builder. group(String mapKey)
Stores the group of anElement
.MapGenerator.Builder
MapGenerator.Builder. identifier(IdentifierType identifierType, String mapKey)
Allows anIdentifierType
of anElement
to be stored, such as anEdge
'sIdentifierType.MATCHED_VERTEX
.MapGenerator.Builder
MapGenerator.Builder. property(String propertyName, String mapKey)
Stores any additional properties of anElement
.
For example: property("count", "3").
This would add the "count" property with a value of "3".MapGenerator.Builder
MapGenerator.Builder. source(String mapKey)
Stores the Source Vertex of anEdge
.MapGenerator.Builder
MapGenerator.Builder. vertex(String mapKey)
Stores the Vertex of anEntity
.
-