Uses of Enum Class
com.univocity.parsers.fixed.FieldAlignment
Packages that use FieldAlignment
-
Uses of FieldAlignment in com.univocity.parsers.fixed
Fields in com.univocity.parsers.fixed declared as FieldAlignmentModifier and TypeFieldDescriptionprivate FieldAlignment
FixedWidthParser.alignment
private FieldAlignment
FixedWidthWriter.alignment
private FieldAlignment[]
FixedWidthParser.alignments
(package private) final FieldAlignment[]
Lookup.alignments
private FieldAlignment
FixedWidthWriterSettings.defaultAlignmentForHeaders
private FieldAlignment
FixedWidthWriter.defaultHeaderAlignment
private FieldAlignment[]
FixedWidthWriter.fieldAlignments
private FieldAlignment[]
FixedWidthParser.rootAlignments
private FieldAlignment[]
FixedWidthWriter.rootAlignments
Fields in com.univocity.parsers.fixed with type parameters of type FieldAlignmentMethods in com.univocity.parsers.fixed that return FieldAlignmentModifier and TypeMethodDescriptionFixedWidthFields.getAlignment
(int position) Returns the alignment of a given field.FixedWidthFields.getAlignment
(String fieldName) Returns the alignment of a given field.FixedWidthWriterSettings.getDefaultAlignmentForHeaders()
Returns the default alignment to use when writing headers.FixedWidthFields.getFieldAlignments()
Returns a copy of the sequence of alignment settings to apply over each field in the fixed-width record.(package private) FieldAlignment[]
FixedWidthParserSettings.getFieldAlignments()
Returns the sequence of alignments to consider for each field of each record.(package private) FieldAlignment[]
FixedWidthWriterSettings.getFieldAlignments()
Returns the sequence of field alignments to apply to each field in the record.static FieldAlignment
Returns the enum constant of this class with the specified name.static FieldAlignment[]
FieldAlignment.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.univocity.parsers.fixed with parameters of type FieldAlignmentModifier and TypeMethodDescriptionFixedWidthFields.addField
(int startPosition, int endPosition, FieldAlignment alignment) Adds the range of the next field in a fixed-width record.FixedWidthFields.addField
(int startPosition, int endPosition, FieldAlignment alignment, char padding) Adds the range of the next field in a fixed-width record.FixedWidthFields.addField
(int length, FieldAlignment alignment) Adds the length of the next field in a fixed-width record.FixedWidthFields.addField
(int length, FieldAlignment alignment, char padding) Adds the length of the next field in a fixed-width record.FixedWidthFields.addField
(String name, int startPosition, int endPosition, FieldAlignment alignment) Adds the range of the next field in a fixed-width record.FixedWidthFields.addField
(String name, int startPosition, int endPosition, FieldAlignment alignment, char padding) Adds the range of the next field in a fixed-width record.FixedWidthFields.addField
(String name, int length, FieldAlignment alignment) Adds the length of the next field in a fixed-width record.FixedWidthFields.addField
(String name, int length, FieldAlignment alignment, char padding) Adds the length of the next field in a fixed-width record.private void
FixedWidthFields.setAlignment
(int position, FieldAlignment alignment) void
FixedWidthFields.setAlignment
(FieldAlignment alignment, int... positions) Applies alignment to a given list of fieldsvoid
FixedWidthFields.setAlignment
(FieldAlignment alignment, String... names) Applies alignment to a given list of fieldsvoid
FixedWidthWriterSettings.setDefaultAlignmentForHeaders
(FieldAlignment defaultAlignmentForHeaders) Defines the default alignment to use when writing headers.