Uses of Class
io.github.kelsoncm.fwf.columns.AbstractColumn
Packages that use AbstractColumn
-
Uses of AbstractColumn in io.github.kelsoncm.fwf.columns
Subclasses of AbstractColumn in io.github.kelsoncm.fwf.columnsModifier and TypeClassDescriptionclassCharacter column representing a left-aligned, space-padded string.classDate column supporting custom formatting and zero-padding for null values.classDateTime column supporting custom Python-style date-time format placeholders and zero-padding.classPositive decimal column with a fixed number of decimal places, formatted with leading zeros.classPositive integer column represented as a zero-padded string of digits.classCharacter column representing a right-aligned, space-padded string.classTime column supporting custom formatting and zero-padding for null values. -
Uses of AbstractColumn in io.github.kelsoncm.fwf.descriptors
Fields in io.github.kelsoncm.fwf.descriptors with type parameters of type AbstractColumnModifier and TypeFieldDescriptionprotected final List<AbstractColumn> RowDescriptor.columnsOrdered list of column definitions for this row.Methods in io.github.kelsoncm.fwf.descriptors that return types with arguments of type AbstractColumnModifier and TypeMethodDescriptionRowDescriptor.getColumns()Gets the list of column definitions.Constructor parameters in io.github.kelsoncm.fwf.descriptors with type arguments of type AbstractColumnModifierConstructorDescriptionDetailRowDescriptor(List<AbstractColumn> columns) Constructs a newDetailRowDescriptorwith a list of column definitions.FooterRowDescriptor(List<AbstractColumn> columns) Constructs a newFooterRowDescriptorwith a list of column definitions.HeaderRowDescriptor(List<AbstractColumn> columns) Constructs a newHeaderRowDescriptorwith a list of column definitions.RowDescriptor(List<AbstractColumn> columns) Constructs a newRowDescriptorwith a list of column definitions.