Uses of Class
uk.gov.gchq.gaffer.data.generator.CsvGenerator.Builder
-
Packages that use CsvGenerator.Builder Package Description uk.gov.gchq.gaffer.data.generator Generator classes for transforming between Gaffer elements and domain objects. -
-
Uses of CsvGenerator.Builder in uk.gov.gchq.gaffer.data.generator
Methods in uk.gov.gchq.gaffer.data.generator that return CsvGenerator.Builder Modifier and Type Method Description CsvGenerator.Builder
CsvGenerator.Builder. commaReplacement(String commaReplacement)
Stores the String with which any encountered commas will be replaced.CsvGenerator.Builder
CsvGenerator.Builder. constant(String key, String value)
Stores any constants specific to a givenElement
.CsvGenerator.Builder
CsvGenerator.Builder. destination(String columnHeader)
Stores the Destination Vertex of anEntity
CsvGenerator.Builder
CsvGenerator.Builder. direction(String columnHeader)
Stores the Direction flag, indicating whether or not theEdge
is directed.CsvGenerator.Builder
CsvGenerator.Builder. edgeGroup(String columnHeader)
Stores the group of anEdge
on a seperate column.CsvGenerator.Builder
CsvGenerator.Builder. entityGroup(String columnHeader)
Stores the group of anEntity
on a seperate column.CsvGenerator.Builder
CsvGenerator.Builder. group(String columnHeader)
Stores the group of anElement
.CsvGenerator.Builder
CsvGenerator.Builder. identifier(IdentifierType identifierType, String columnHeader)
Allows anIdentifierType
of anElement
to be stored, such as anEdge
'sIdentifierType.MATCHED_VERTEX
.CsvGenerator.Builder
CsvGenerator.Builder. property(String propertyName, String columnHeader)
Stores any additional properties of anElement
.
For example: property("count", "3").
This would add the "count" property with a value of "3"CsvGenerator.Builder
CsvGenerator.Builder. quoted(boolean quoted)
Stores the flag for whether or not each distinct value should be wrapped in quotation marks.CsvGenerator.Builder
CsvGenerator.Builder. setAdditionalFieldsFromSchemaProperties(LinkedHashMap<String,Class<?>> schemaProperties)
Saves all properties from the schema which be added to fields.CsvGenerator.Builder
CsvGenerator.Builder. source(String columnHeader)
Stores the Source Vertex of anEdge
.CsvGenerator.Builder
CsvGenerator.Builder. vertex(String columnHeader)
Stores the Vertex of anEntity
-