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.BuilderCsvGenerator.Builder. commaReplacement(String commaReplacement)Stores the String with which any encountered commas will be replaced.CsvGenerator.BuilderCsvGenerator.Builder. constant(String key, String value)Stores any constants specific to a givenElement.CsvGenerator.BuilderCsvGenerator.Builder. destination(String columnHeader)Stores the Destination Vertex of anEntityCsvGenerator.BuilderCsvGenerator.Builder. direction(String columnHeader)Stores the Direction flag, indicating whether or not theEdgeis directed.CsvGenerator.BuilderCsvGenerator.Builder. edgeGroup(String columnHeader)Stores the group of anEdgeon a seperate column.CsvGenerator.BuilderCsvGenerator.Builder. entityGroup(String columnHeader)Stores the group of anEntityon a seperate column.CsvGenerator.BuilderCsvGenerator.Builder. group(String columnHeader)Stores the group of anElement.CsvGenerator.BuilderCsvGenerator.Builder. identifier(IdentifierType identifierType, String columnHeader)Allows anIdentifierTypeof anElementto be stored, such as anEdge'sIdentifierType.MATCHED_VERTEX.CsvGenerator.BuilderCsvGenerator.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.BuilderCsvGenerator.Builder. quoted(boolean quoted)Stores the flag for whether or not each distinct value should be wrapped in quotation marks.CsvGenerator.BuilderCsvGenerator.Builder. setAdditionalFieldsFromSchemaProperties(LinkedHashMap<String,Class<?>> schemaProperties)Saves all properties from the schema which be added to fields.CsvGenerator.BuilderCsvGenerator.Builder. source(String columnHeader)Stores the Source Vertex of anEdge.CsvGenerator.BuilderCsvGenerator.Builder. vertex(String columnHeader)Stores the Vertex of anEntity
-