Skip navigation links
A C D E F G H I K N O P R S T V W 

A

AbstractColumn<T> - Class in org.refcodes.tabular.impls
The AbstractColumn is the default implementation for the Column interface.
AbstractColumn(String, Class<T>) - Constructor for class org.refcodes.tabular.impls.AbstractColumn
Constructs a column.
AbstractHeader<T,C extends Column<? extends T>> - Class in org.refcodes.tabular.impls
Implementation of the Header interface being Cloneable.
AbstractHeader() - Constructor for class org.refcodes.tabular.impls.AbstractHeader
Constructs the AbstractHeader instance.
AbstractHeader(C...) - Constructor for class org.refcodes.tabular.impls.AbstractHeader
Constructs the AbstractHeader instance configured with the provided Column instances.
add(C) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
add(int, C) - Method in class org.refcodes.tabular.impls.AbstractHeader
 

C

clone() - Method in class org.refcodes.tabular.impls.AbstractColumn
 
clone() - Method in class org.refcodes.tabular.impls.ColumnImpl
 
clone() - Method in class org.refcodes.tabular.impls.DateColumnImpl
 
clone() - Method in class org.refcodes.tabular.impls.ExceptionColumnImpl
 
clone() - Method in class org.refcodes.tabular.impls.FieldImpl
 
clone() - Method in class org.refcodes.tabular.impls.IntegerColumnImpl
 
clone() - Method in class org.refcodes.tabular.impls.RecordsImpl
 
clone() - Method in class org.refcodes.tabular.impls.RowsImpl
 
clone() - Method in class org.refcodes.tabular.impls.StringColumnImpl
 
clone() - Method in class org.refcodes.tabular.impls.StringsColumnImpl
 
close() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
Column<T> - Interface in org.refcodes.tabular
Similar to a Column definition for a DB or a spread sheet (or, with reservations, a CSV file), a Column describes properties such as name (key) and type of elements related to that Column (e.g. the according elements of the Row lines).
ColumnAccessor<T> - Interface in org.refcodes.tabular
Provides an accessor for a Column property.
ColumnAccessor.ColumnMutator<T> - Interface in org.refcodes.tabular
Provides a mutator for a Column property.
ColumnAccessor.ColumnProperty<T> - Interface in org.refcodes.tabular
Provides a Column property.
ColumnFactory<T> - Interface in org.refcodes.tabular
A ColumnFactory creates or retrieves a Column instances identified by the provided key (name).
ColumnFactoryImpl - Class in org.refcodes.tabular.impls
Most generic ColumnFactory for creating Column instances managing instances of the (sub-)type Object.
ColumnFactoryImpl() - Constructor for class org.refcodes.tabular.impls.ColumnFactoryImpl
 
ColumnImpl<T> - Class in org.refcodes.tabular.impls
Implementation of a Column supporting Object instances, being Cloneable.
ColumnImpl(String, Class<T>) - Constructor for class org.refcodes.tabular.impls.ColumnImpl
Creates a ColumnImpl managing String instances.
ColumnMismatchException - Exception in org.refcodes.tabular
Thrown in case a value was found in the e.g. in a Record of the wrong type than specified by a provided Column (of for example a Header).
ColumnMismatchException(Column<?>, Object, String, String) - Constructor for exception org.refcodes.tabular.ColumnMismatchException
 
ColumnMismatchException(Column<?>, Object, String, Throwable, String) - Constructor for exception org.refcodes.tabular.ColumnMismatchException
 
ColumnMismatchException(Column<?>, Object, String, Throwable) - Constructor for exception org.refcodes.tabular.ColumnMismatchException
 
ColumnMismatchException(Column<?>, Object, String) - Constructor for exception org.refcodes.tabular.ColumnMismatchException
 
ColumnMismatchException(Column<?>, Object, Throwable, String) - Constructor for exception org.refcodes.tabular.ColumnMismatchException
 
ColumnMismatchException(Column<?>, Object, Throwable) - Constructor for exception org.refcodes.tabular.ColumnMismatchException
 
Columns<T> - Interface in org.refcodes.tabular
In case no order of the Column instances is explicitly required (similar to a DB table or a spread sheet, in contrast to a CSV file) then Column instances are grouped by a Columns set.
ColumnsTemplate<T,C extends Column<? extends T>> - Interface in org.refcodes.tabular
In case no order of the Column instances is explicitly required (similar to a DB table or a spread sheet, in contrast to a CSV file) then Column instances are grouped by a ColumnsTemplate set.
CompositeRecordsImpl<T> - Class in org.refcodes.tabular.impls
Implementation of the Records interface wrapping multiple Records instances.
CompositeRecordsImpl(InvocationStrategy, Records<T>...) - Constructor for class org.refcodes.tabular.impls.CompositeRecordsImpl
Constructs a CompositeRecordsImpl serving Record instances from multiple Records instances.
CompositeRecordsImpl(ExecutionStrategy, InvocationStrategy, Records<T>...) - Constructor for class org.refcodes.tabular.impls.CompositeRecordsImpl
Constructs a CompositeRecordsImpl serving Record instances from multiple Records instances.
CompositeRecordsImpl(InvocationStrategy, Collection<Records<T>>) - Constructor for class org.refcodes.tabular.impls.CompositeRecordsImpl
Constructs a CompositeRecordsImpl serving Record instances from multiple Records instances.
CompositeRecordsImpl(ExecutionStrategy, InvocationStrategy, Collection<Records<T>>) - Constructor for class org.refcodes.tabular.impls.CompositeRecordsImpl
Constructs a CompositeRecordsImpl serving Record instances from multiple Records instances.
contains(Record<?>) - Method in interface org.refcodes.tabular.Column
Tests whether the Record contains a value identified by the Column instance's key and where the value's type is assignable to the Column instance's type.
contains(Record<?>) - Method in class org.refcodes.tabular.impls.AbstractColumn
 
contains(Record<?>) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
containsKey(String) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
CsvFileRecordsImpl<T> - Class in org.refcodes.tabular.impls
The CsvFileRecordsImpl is an implementation of the Records interface and provides functionality to parse CSV files.
CsvFileRecordsImpl(Header<T>, File) - Constructor for class org.refcodes.tabular.impls.CsvFileRecordsImpl
Constructs a CsvFileRecordsImpl with the given parameters.
CsvFileRecordsImpl(Header<T>, File, char) - Constructor for class org.refcodes.tabular.impls.CsvFileRecordsImpl
Constructs a CsvFileRecordsImpl with the given parameters.
CsvFileRecordsImpl(Header<T>, File, boolean) - Constructor for class org.refcodes.tabular.impls.CsvFileRecordsImpl
Constructs a CsvFileRecordsImpl with the given parameters.
CsvFileRecordsImpl(Header<T>, File, char, boolean) - Constructor for class org.refcodes.tabular.impls.CsvFileRecordsImpl
Constructs a CsvFileRecordsImpl with the given parameters.
CsvFileRecordsImpl(ColumnFactory<T>, File) - Constructor for class org.refcodes.tabular.impls.CsvFileRecordsImpl
Constructs a CsvFileRecordsImpl with the given parameters.
CsvFileRecordsImpl(ColumnFactory<T>, File, char) - Constructor for class org.refcodes.tabular.impls.CsvFileRecordsImpl
Constructs a CsvFileRecordsImpl with the given parameters.
CsvFileRecordsImpl(ColumnFactory<T>, File, boolean) - Constructor for class org.refcodes.tabular.impls.CsvFileRecordsImpl
Constructs a CsvFileRecordsImpl with the given parameters.
CsvFileRecordsImpl(ColumnFactory<T>, File, char, boolean) - Constructor for class org.refcodes.tabular.impls.CsvFileRecordsImpl
Constructs a CsvFileRecordsImpl with the given parameters.
CsvInputStreamRecordsImpl<T> - Class in org.refcodes.tabular.impls
The CsvInputStreamRecordsImpl is an implementation of the Records interface and provides functionality to parse CSV input streams.
CsvInputStreamRecordsImpl(Header<T>, InputStream) - Constructor for class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
Constructs a CsvInputStreamRecordsImpl with the given parameters.
CsvInputStreamRecordsImpl(Header<T>, InputStream, boolean) - Constructor for class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
Constructs a CsvInputStreamRecordsImpl with the given parameters.
CsvInputStreamRecordsImpl(Header<T>, InputStream, char) - Constructor for class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
Constructs a CsvInputStreamRecordsImpl with the given parameters.
CsvInputStreamRecordsImpl(Header<T>, InputStream, char, boolean) - Constructor for class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
Constructs a CsvInputStreamRecordsImpl with the given parameters.
CsvInputStreamRecordsImpl(ColumnFactory<T>, InputStream) - Constructor for class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
Constructs a CsvInputStreamRecordsImpl with the given parameters.
CsvInputStreamRecordsImpl(ColumnFactory<T>, InputStream, boolean) - Constructor for class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
Constructs a CsvInputStreamRecordsImpl with the given parameters.
CsvInputStreamRecordsImpl(ColumnFactory<T>, InputStream, char) - Constructor for class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
Constructs a CsvInputStreamRecordsImpl with the given parameters.
CsvInputStreamRecordsImpl(ColumnFactory<T>, InputStream, char, boolean) - Constructor for class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
Constructs a CsvInputStreamRecordsImpl with the given parameters.
CsvInputStreamRecordsImpl(Header<T>, ColumnFactory<T>, InputStream, char, boolean) - Constructor for class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
Constructs a CsvInputStreamRecordsImpl with the given parameters.

D

DateColumnImpl - Class in org.refcodes.tabular.impls
DateColumnImpl extends the OneToOneColumnImpl with support for the Date type and various default or custom date formats.
DateColumnImpl(String) - Constructor for class org.refcodes.tabular.impls.DateColumnImpl
Constructor of the DateColumnImpl with support for the default SimpleDateFormat instances as defined in the DateFormat#DEFAULT_DATE_FORMATS.
DateColumnImpl(String, DateTimeFormatter[]) - Constructor for class org.refcodes.tabular.impls.DateColumnImpl
Constructor of the DateColumnImpl with support for the provided SimpleDateFormat instances.
decompose() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
destroy() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
dispose() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 

E

ExceptionColumnImpl - Class in org.refcodes.tabular.impls
 
ExceptionColumnImpl(String) - Constructor for class org.refcodes.tabular.impls.ExceptionColumnImpl
Creates an ExceptionColumnImpl which will consider the stack trace in its string representation #toStorageString(Throwable).
ExceptionColumnImpl(String, PrintStackTrace) - Constructor for class org.refcodes.tabular.impls.ExceptionColumnImpl
Creates an ExceptionColumnImpl which can consider or omit the stack trace in its string representation #toStorageString(Throwable).

F

Field<T> - Interface in org.refcodes.tabular
A Field stores an attribute consisting of a key (name) and a value.
FieldImpl<T> - Class in org.refcodes.tabular.impls
Implementation of the Field interface being Cloneable.
FieldImpl(String, T) - Constructor for class org.refcodes.tabular.impls.FieldImpl
Constructs a Field.
Fields<T> - Interface in org.refcodes.tabular
A Fields stores an attribute consisting of a key (name) and an array of values.
FieldsImpl<T> - Class in org.refcodes.tabular.impls
Implementation of the Fields interface being Cloneable.
FieldsImpl(String, T[]) - Constructor for class org.refcodes.tabular.impls.FieldsImpl
Constructs a Fields instance with an array of values.
flush() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
FormattedColumn<T> - Interface in org.refcodes.tabular
Enriches a Column with rendering metrics (as of the ColumnSetupMetrics) mostly for text-based output such as for generating output for a terminal / console.
FormattedColumnDecorator<T> - Class in org.refcodes.tabular.impls
Decorator implementation of the HeaderSetupMetrics interface.
FormattedColumnDecorator(String, Class<T>) - Constructor for class org.refcodes.tabular.impls.FormattedColumnDecorator
 
FormattedColumnDecorator(Column<T>) - Constructor for class org.refcodes.tabular.impls.FormattedColumnDecorator
Wrapper for the provided Column decorating it with additional ColumnSetupMetrics functionality.
FormattedColumnDecorator(String, Class<T>, ColumnSetupMetrics) - Constructor for class org.refcodes.tabular.impls.FormattedColumnDecorator
Wrapper for the provided ColumnSetupMetrics decorating it with additional Column functionality.
FormattedColumnDecorator(Column<T>, ColumnSetupMetrics) - Constructor for class org.refcodes.tabular.impls.FormattedColumnDecorator
Wrapper for the provided Column and the provided ColumnSetupMetrics decorating it with each other's additional functionality.
FormattedColumnImpl<T> - Class in org.refcodes.tabular.impls
Implementation of the FormattedColumn interface.
FormattedColumnImpl(String, Class<T>) - Constructor for class org.refcodes.tabular.impls.FormattedColumnImpl
Constructs an instance of the FormattedColumn type.
FormattedColumns<T> - Interface in org.refcodes.tabular
In case no order of the FormattedColumn instances is explicitly required (similar to a DB table or a spread sheet, in contrast to a CSV file) then FormattedColumn instances are grouped by a FormattedColumns set.
FormattedHeader<T> - Interface in org.refcodes.tabular
A list of Column instances, for example describing the elements of a CSV file (visually speaking the of the CSV file's header line), is represented by the FormattedHeader.
FormattedHeaderImpl<T> - Class in org.refcodes.tabular.impls
 
FormattedHeaderImpl() - Constructor for class org.refcodes.tabular.impls.FormattedHeaderImpl
 
FormattedHeaderImpl(FormattedColumn<? extends T>...) - Constructor for class org.refcodes.tabular.impls.FormattedHeaderImpl
 
fromColumnFormatMetrics(ColumnFormatMetrics) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
fromColumnSetupMetrics(ColumnSetupMetrics) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
fromColumnWidthMetrics(ColumnWidthMetrics) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
fromStorageString(String) - Method in interface org.refcodes.tabular.Column
A Column implementation can provide its own text exchange format for the given objects.
fromStorageString(Row<String>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageString(Record<String>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageString(String) - Method in class org.refcodes.tabular.impls.AbstractColumn
A Column implementation can provide its own text exchange format for the given objects.
fromStorageString(Record<String>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
fromStorageString(Row<String>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
fromStorageString(String) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
fromStorageStringRecord(Record<String>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageStringRecord(Record<String>) - Method in class org.refcodes.tabular.impls.AbstractHeader
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageStringRow(Row<String>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageStringRow(Row<String>) - Method in class org.refcodes.tabular.impls.AbstractHeader
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageStrings(String[]) - Method in interface org.refcodes.tabular.Column
A Column implementation can provide its own text exchange format for the given objects.
fromStorageStrings(Row<String[]>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageStrings(Record<String[]>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageStrings(Row<String[]>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
fromStorageStrings(Record<String[]>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
fromStorageStrings(String[]) - Method in class org.refcodes.tabular.impls.ColumnImpl
 
fromStorageStrings(String[]) - Method in class org.refcodes.tabular.impls.DateColumnImpl
 
fromStorageStrings(String[]) - Method in class org.refcodes.tabular.impls.ExceptionColumnImpl
 
fromStorageStrings(String[]) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
fromStorageStrings(String[]) - Method in class org.refcodes.tabular.impls.IntegerColumnImpl
 
fromStorageStrings(String[]) - Method in class org.refcodes.tabular.impls.StringColumnImpl
 
fromStorageStrings(String[]) - Method in class org.refcodes.tabular.impls.StringsColumnImpl
 
fromStorageStringsRecord(Record<String[]>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageStringsRecord(Record<String[]>) - Method in class org.refcodes.tabular.impls.AbstractHeader
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageStringsRow(Row<String[]>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
fromStorageStringsRow(Row<String[]>) - Method in class org.refcodes.tabular.impls.AbstractHeader
A special Column implementation might provide its own text exchange format for the given objects.

G

get(Record<?>) - Method in interface org.refcodes.tabular.Column
Retrieves a type correct value from the Record identified by the Column instance's key.
get(Record<?>) - Method in class org.refcodes.tabular.impls.AbstractColumn
 
get(String) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
get(Record<?>) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
get(Header<T>, String) - Method in class org.refcodes.tabular.impls.RowImpl
 
get(Header<T>, String) - Method in interface org.refcodes.tabular.Row
This method retrieves a value from the row by taking the index of the according column in the header of the given key (the one with the given key) and returns that value.
getColumn() - Method in interface org.refcodes.tabular.ColumnAccessor
Retrieves the Column property.
getColumnWidth() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getColumnWidthType() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getErroneousRecordCount() - Method in class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
 
getErroneousRecordCount() - Method in interface org.refcodes.tabular.InputStreamRecords
The number of erroneous records which were not read by the InputStreamRecords.
getHeader() - Method in interface org.refcodes.tabular.HeaderAccessor
Retrieves the Header property.
getHeader() - Method in class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
 
getHeader() - Method in class org.refcodes.tabular.impls.RowsImpl
 
getHeaderEscapeCode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getHeaderEscapeCodeFactory() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getHeaderHorizAlignTextMode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getHeaderMoreTextMode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getHeaderSplitTextMode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getHeaderTextFormatMode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getKey() - Method in class org.refcodes.tabular.impls.AbstractColumn
 
getKey() - Method in class org.refcodes.tabular.impls.FieldImpl
 
getKey() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getName() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getRecord() - Method in interface org.refcodes.tabular.RecordAccessor
Retrieves the Record property.
getRecords() - Method in interface org.refcodes.tabular.RecordsAccessor
Retrieves the Records property.
getResetEscapeCode() - Method in interface org.refcodes.tabular.FormattedHeader
Gets the ANSI reset Escape-Code for this FormattedHeader instance.
getResetEscapeCode() - Method in class org.refcodes.tabular.impls.FormattedHeaderImpl
 
getRowEscapeCode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getRowEscapeCodeFactory() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getRowHorizAlignTextMode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getRowMoreTextMode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getRowSplitTextMode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getRowTextFormatMode() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getType() - Method in class org.refcodes.tabular.impls.AbstractColumn
 
getType() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
getValue() - Method in class org.refcodes.tabular.impls.FieldImpl
 

H

hasNext() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
hasNext() - Method in class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
 
hasNext() - Method in class org.refcodes.tabular.impls.RecordsImpl
 
hasNext() - Method in class org.refcodes.tabular.impls.RowsImpl
 
Header<T> - Interface in org.refcodes.tabular
A list of Column instances, for example describing the elements of a CSV file (visually speaking the of the CSV file's header line), is represented by the Header.
HeaderAccessor<T> - Interface in org.refcodes.tabular
Provides an accessor for a Header property.
HeaderAccessor.HeaderBuilder<T extends HeaderAccessor.HeaderBuilder<?>> - Interface in org.refcodes.tabular
Provides a mutator for an header property.
HeaderAccessor.HeaderMutator<T> - Interface in org.refcodes.tabular
Provides a mutator for a Header property.
HeaderAccessor.HeaderProperty<T> - Interface in org.refcodes.tabular
Provides a Header property.
HeaderImpl<T> - Class in org.refcodes.tabular.impls
Implementation of the Header interface being Cloneable.
HeaderImpl() - Constructor for class org.refcodes.tabular.impls.HeaderImpl
 
HeaderImpl(Column<? extends T>...) - Constructor for class org.refcodes.tabular.impls.HeaderImpl
 
HeaderMismatchException - Exception in org.refcodes.tabular
Thrown in case there is a mismatch between the given HeaderMismatchException and the Row, i.e. the index for the given key in the header may be out of index of the given row or the given key does not exist in the Header.
HeaderMismatchException(String, String, String) - Constructor for exception org.refcodes.tabular.HeaderMismatchException
 
HeaderMismatchException(String, String, Throwable, String) - Constructor for exception org.refcodes.tabular.HeaderMismatchException
 
HeaderMismatchException(String, String, Throwable) - Constructor for exception org.refcodes.tabular.HeaderMismatchException
 
HeaderMismatchException(String, String) - Constructor for exception org.refcodes.tabular.HeaderMismatchException
 
HeaderMismatchException(String, Throwable, String) - Constructor for exception org.refcodes.tabular.HeaderMismatchException
 
HeaderMismatchException(String, Throwable) - Constructor for exception org.refcodes.tabular.HeaderMismatchException
 
HeaderTemplate<T,C extends Column<? extends T>> - Interface in org.refcodes.tabular
A list of Column instances, for example describing the elements of a CSV file (visually speaking the of the CSV file's header line), is represented by the HeaderTemplate.
hide() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 

I

indexOf(String) - Method in interface org.refcodes.tabular.HeaderTemplate
Determines the index of the column with the given key or -1 if there is none such column.
indexOf(String) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
initialize() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
InputStreamRecords<T> - Interface in org.refcodes.tabular
Extends the Records with means to monitor the state of file based implementations.
IntegerColumnImpl - Class in org.refcodes.tabular.impls
Implementation of the Column interface for working with Integer instances, being Cloneable.
IntegerColumnImpl(String) - Constructor for class org.refcodes.tabular.impls.IntegerColumnImpl
Creates a IntegerColumnImpl managing Integer instances.
isEqualWith(Record<?>, Header<?>) - Static method in class org.refcodes.tabular.TabularUtility
Tests whether the given potential equal set of Header is matching the Record's elements in terms of matching the same relevant attributes of the columns with the elements in the Record.
isEqualWith(Row<?>, Header<?>) - Static method in class org.refcodes.tabular.TabularUtility
Tests whether the given potential Header equal set is matching the Row's elements in terms of matching the same relevant attributes of the Header with the elements in the Row.
isSubsetOf(Record<?>, Header<?>) - Static method in class org.refcodes.tabular.TabularUtility
Tests whether the given potential subset of Header is matching the Record's elements in terms of matching the same relevant attributes of the Column instances with the elements in the Record.
isSubsetOf(Row<?>, Header<?>) - Static method in class org.refcodes.tabular.TabularUtility
Tests whether the given potential Header subset is matching the Row's elements in terms of matching the same relevant attributes of the Header with the elements in the Row.
isSupersetOf(Record<?>, Header<?>) - Static method in class org.refcodes.tabular.TabularUtility
Tests whether the Record's elements is matching the given potential superset of Header in terms of matching the same relevant attributes of the columns with the elements in the Record.
isSupersetOf(Row<?>, Header<?>) - Static method in class org.refcodes.tabular.TabularUtility
Tests whether the Row's elements is matching the given potential Header superset in terms of matching the same relevant attributes of the Header with the elements in the Row.
isVisible() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 

K

keySet() - Method in class org.refcodes.tabular.impls.AbstractHeader
----------------------------------------------------------- -------------- A LinkedHashSet is returned in order to preserve the order of the elements as contained in the Header itself

N

next() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
next() - Method in class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
 
next() - Method in class org.refcodes.tabular.impls.RecordsImpl
 
next() - Method in class org.refcodes.tabular.impls.RowsImpl
 

O

open() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
org.refcodes.tabular - package org.refcodes.tabular
The tabular package provides a frame to handle tables of data, often occurring when logging or when working with CSV files.
org.refcodes.tabular.impls - package org.refcodes.tabular.impls
 

P

pause() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
PrintStackTrace - Enum in org.refcodes.tabular
 

R

Record<T> - Interface in org.refcodes.tabular
A Record is a Map containing Field data structures with support for Column definitions.
RecordAccessor<T> - Interface in org.refcodes.tabular
Provides an accessor for a Record property.
RecordAccessor.RecordMutator<T> - Interface in org.refcodes.tabular
Provides a mutator for a Record property.
RecordAccessor.RecordProperty<T> - Interface in org.refcodes.tabular
Provides a Record property.
RecordImpl<T> - Class in org.refcodes.tabular.impls
Implementation of the Record interface being Cloneable.
RecordImpl() - Constructor for class org.refcodes.tabular.impls.RecordImpl
Constructs the RecordImpl instance.
RecordImpl(Field<? extends T>...) - Constructor for class org.refcodes.tabular.impls.RecordImpl
Constructs the RecordImpl instance configured with the provided Field instances.
RecordImpl(List<Field<T>>) - Constructor for class org.refcodes.tabular.impls.RecordImpl
Constructs a record with the given items.
Records<T> - Interface in org.refcodes.tabular
A bunch of Record instances is represented by a Records instance.
RecordsAccessor<T> - Interface in org.refcodes.tabular
Provides an accessor for a Records property.
RecordsAccessor.RecordsMutator<T> - Interface in org.refcodes.tabular
Provides a mutator for a Records property.
RecordsAccessor.RecordsProperty<T> - Interface in org.refcodes.tabular
Provides a Records property.
RecordsImpl<T> - Class in org.refcodes.tabular.impls
Implementation of the Records interface being Cloneable.
RecordsImpl(Collection<Record<? extends T>>) - Constructor for class org.refcodes.tabular.impls.RecordsImpl
Constructs the RecordsImpl instance configured with the provided Record instances.
RecordsImpl(Record<? extends T>...) - Constructor for class org.refcodes.tabular.impls.RecordsImpl
Constructs the RecordsImpl instance configured with the provided Record instances.
remove(Record<?>) - Method in interface org.refcodes.tabular.Column
Removes an entry (key and value pair) from the provided Record matching the key and the type of the Column.
remove(Record<?>) - Method in class org.refcodes.tabular.impls.AbstractColumn
 
remove() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
remove() - Method in class org.refcodes.tabular.impls.CsvInputStreamRecordsImpl
 
remove(Record<?>) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
remove() - Method in class org.refcodes.tabular.impls.RecordsImpl
 
remove() - Method in class org.refcodes.tabular.impls.RowsImpl
 
removeByKey(String) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
reset() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
resume() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
Row<T> - Interface in org.refcodes.tabular
A Row holds multiple data elements loosely coupled to a Header.
RowImpl<T> - Class in org.refcodes.tabular.impls
Implementation of the Row interface being Cloneable.
RowImpl(T...) - Constructor for class org.refcodes.tabular.impls.RowImpl
Constructs the RowImpl instance configured with the provided elements.
Rows<T> - Interface in org.refcodes.tabular
A bunch of Row instances is represented by a Rows instance.
RowsImpl<T> - Class in org.refcodes.tabular.impls
Implementation of the Rows interface being Cloneable.
RowsImpl(Header<T>, Row<T>...) - Constructor for class org.refcodes.tabular.impls.RowsImpl
Constructs the RowsImpl instance configured with the provided Row instances and the provided Header instance.
RowsImpl(Header<T>, Collection<Row<T>>) - Constructor for class org.refcodes.tabular.impls.RowsImpl
Constructs the RowsImpl instance configured with the provided Row instances and the provided Header instance.

S

setColumn(Column<T>) - Method in interface org.refcodes.tabular.ColumnAccessor.ColumnMutator
Sets the Column property.
setColumnWidth(int) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setColumnWidthType(ColumnWidthType) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setEscapeCode(String) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setEscapeCodeFactory(EscapeCodeFactory) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setHeader(Header<T>) - Method in interface org.refcodes.tabular.HeaderAccessor.HeaderMutator
Sets the Header property.
setHeaderEscapeCode(String) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setHeaderEscapeCodeFactory(EscapeCodeFactory) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setHeaderHorizAlignTextMode(HorizAlignTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setHeaderMoreTextMode(MoreTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setHeaderSplitTextMode(SplitTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setHeaderTextFormatMode(TextFormatMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setHorizAlignTextMode(HorizAlignTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setMoreTextMode(MoreTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setName(String) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setRecord(Record<T>) - Method in interface org.refcodes.tabular.RecordAccessor.RecordMutator
Sets the Record property.
setRecords(Records<T>) - Method in interface org.refcodes.tabular.RecordsAccessor.RecordsMutator
Sets the Records property.
setResetEscapeCode(String) - Method in interface org.refcodes.tabular.FormattedHeader
Gets the ANSI reset Escape-Code for this FormattedHeader instance.
setResetEscapeCode(String) - Method in class org.refcodes.tabular.impls.FormattedHeaderImpl
 
setRowEscapeCode(String) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setRowEscapeCodeFactory(EscapeCodeFactory) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setRowHorizAlignTextMode(HorizAlignTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setRowMoreTextMode(MoreTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setRowSplitTextMode(SplitTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setRowTextFormatMode(TextFormatMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setSplitTextMode(SplitTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setTextFormatMode(TextFormatMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
setVisible(boolean) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
show() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
start() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
stop() - Method in class org.refcodes.tabular.impls.CompositeRecordsImpl
 
StringColumnImpl - Class in org.refcodes.tabular.impls
Implementation of the Column interface for working with String instances, being Cloneable.
StringColumnImpl(String) - Constructor for class org.refcodes.tabular.impls.StringColumnImpl
Creates a StringColumnImpl managing String instances.
StringsColumnImpl - Class in org.refcodes.tabular.impls
Implementation of the OneToManyColumn interface for working with String arrays, being Cloneable.
StringsColumnImpl(String) - Constructor for class org.refcodes.tabular.impls.StringsColumnImpl
Creates a StringsColumnImpl managing String array instances.

T

TabularException - Exception in org.refcodes.tabular
Base exception for the refcodes-tabular artifact.
TabularException(String, String) - Constructor for exception org.refcodes.tabular.TabularException
 
TabularException(String, Throwable, String) - Constructor for exception org.refcodes.tabular.TabularException
 
TabularException(String, Throwable) - Constructor for exception org.refcodes.tabular.TabularException
 
TabularException(String) - Constructor for exception org.refcodes.tabular.TabularException
 
TabularException(Throwable, String) - Constructor for exception org.refcodes.tabular.TabularException
 
TabularException(Throwable) - Constructor for exception org.refcodes.tabular.TabularException
 
TabularRuntimeException - Exception in org.refcodes.tabular
Base runtime exception for the refcodes-tabular artifact.
TabularRuntimeException(String, String) - Constructor for exception org.refcodes.tabular.TabularRuntimeException
 
TabularRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.tabular.TabularRuntimeException
 
TabularRuntimeException(String, Throwable) - Constructor for exception org.refcodes.tabular.TabularRuntimeException
 
TabularRuntimeException(String) - Constructor for exception org.refcodes.tabular.TabularRuntimeException
 
TabularRuntimeException(Throwable, String) - Constructor for exception org.refcodes.tabular.TabularRuntimeException
 
TabularRuntimeException(Throwable) - Constructor for exception org.refcodes.tabular.TabularRuntimeException
 
TabularUtility - Class in org.refcodes.tabular
Utility for listing specific functionality.
toFieldSet() - Method in class org.refcodes.tabular.impls.RecordImpl
 
toFieldSet() - Method in interface org.refcodes.tabular.Record
Returns the Field Set representation of the Record.
toFileNameFromZip(String) - Static method in class org.refcodes.tabular.impls.CsvFileRecordsImpl
Truncates the ".zip" suffix from the filename and returns the result.
toHeader(String[], ColumnFactory<T>) - Static method in class org.refcodes.tabular.TabularUtility
Creates a header for a given string array with the column names to be used for the header.
toHeader(Collection<String>, ColumnFactory<T>) - Static method in class org.refcodes.tabular.TabularUtility
Creates a header for a given list of strings containing the column names to be used for the header.
toHeaderEscapeCode(Object) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
toInputStream(File) - Static method in class org.refcodes.tabular.impls.CsvFileRecordsImpl
Returns an InputStream from the provided File.
toInstance(String) - Method in interface org.refcodes.tabular.ColumnFactory
 
toInstance(String, Properties) - Method in interface org.refcodes.tabular.ColumnFactory
 
toInstance(String) - Method in class org.refcodes.tabular.impls.ColumnFactoryImpl
Returns the default Column implementation being the OneToOneColumnImpl.
toInstance(String, Properties) - Method in class org.refcodes.tabular.impls.ColumnFactoryImpl
As no properties are supported, this operation is not supported by this implementation.
toIntersection(Record<T>, Header<?>) - Static method in class org.refcodes.tabular.TabularUtility
Returns a Record just containing the keys as defined in the Header and found in the provided Record. ------------------------------------------------------------------------- TODO: Think about moving this method to the Header
toPrintable(T) - Method in interface org.refcodes.tabular.Column
A Column implementation can provide its own printable format of the given objects; for example a human readable text representation of the value (or in very specialized cases even enriched with ANSI escape codes).
toPrintable(Record<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own printable format of the given objects; for example a human readable text representation of the value (or in very specialized cases even enriched with ANSI Escape-Codes).
toPrintable(Row<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own printable format of the given objects; for example a human readable text representation of the value (or in very specialized cases even enriched with ANSI Escape-Codes).
toPrintable(T) - Method in class org.refcodes.tabular.impls.AbstractColumn
 
toPrintable(Record<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toPrintable(Row<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toPrintable(Date) - Method in class org.refcodes.tabular.impls.DateColumnImpl
 
toPrintable(Throwable) - Method in class org.refcodes.tabular.impls.ExceptionColumnImpl
 
toPrintable(T) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
toPrintableRecord(Row<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own printable format of the given objects; for example a human readable text representation of the value (or in very specialized cases even enriched with ANSI Escape-Codes).
toPrintableRecord(Row<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
A special Column implementation might provide its own printable format of the given objects; for example a human readable text representation of the value (or in very specialized cases even enriched with ANSI Escape-Codes).
toPrintableRow(Record<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own printable format of the given objects; for example a human readable text representation of the value (or in very specialized cases even enriched with ANSI Escape-Codes).
toPrintableRow(Record<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toPurged(Record<?>) - Static method in class org.refcodes.tabular.TabularUtility
The given Record is taken and only all non null values are taken for the returned Record.
toRecord(Row<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
Creates a Record of the Row with the values in the order of the HeaderTemplate.
toRecord(Row<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toRecordIgnoreType(Row<?>) - Method in interface org.refcodes.tabular.HeaderTemplate
Similar to HeaderTemplate.toRecord(Row) with the difference that conversion is done ignoring the type of the HeaderTemplate Column instances and the according value(s).
toRecordIgnoreType(Row<?>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toRow(Record<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
Creates a Row of the Record with the values in the order of the HeaderTemplate.
toRow(Record<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toRowEscapeCode(Object) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
toRowIgnoreType(Record<?>) - Method in interface org.refcodes.tabular.HeaderTemplate
Similar to HeaderTemplate.toRow(Record) with the difference that conversion is done ignoring the type of the HeaderTemplate Column instances and the according value(s).
toRowIgnoreType(Record<?>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toSeparatedValues(Record<?>) - Static method in class org.refcodes.tabular.TabularUtility
Returns a separated values representation of the implementing collection by separating each item with the default separator Delimiter.CSV_DELIMITER.
toSeparatedValues(Record<?>, char) - Static method in class org.refcodes.tabular.TabularUtility
Returns a separated values representation of the implementing collection by separating each item with the given separator.
toStorageString(T) - Method in interface org.refcodes.tabular.Column
A Column implementation can provide its own text exchange format for the given objects.
toStorageString(Row<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
toStorageString(Record<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
toStorageString(T) - Method in class org.refcodes.tabular.impls.AbstractColumn
A Column implementation can provide its own text exchange format for the given objects.
toStorageString(Record<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toStorageString(Row<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toStorageString(T) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
toStorageStringRecord(Row<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
toStorageStringRecord(Row<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
A special Column implementation might provide its own text exchange format for the given objects.
toStorageStringRow(Record<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
toStorageStringRow(Record<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
A special Column implementation might provide its own text exchange format for the given objects.
toStorageStrings(T) - Method in interface org.refcodes.tabular.Column
A Column implementation can provide its own text exchange format for the given objects.
toStorageStrings(Row<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
toStorageStrings(Record<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
toStorageStrings(Record<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toStorageStrings(Row<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
 
toStorageStrings(T) - Method in class org.refcodes.tabular.impls.ColumnImpl
 
toStorageStrings(Date) - Method in class org.refcodes.tabular.impls.DateColumnImpl
 
toStorageStrings(Throwable) - Method in class org.refcodes.tabular.impls.ExceptionColumnImpl
 
toStorageStrings(T) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
toStorageStrings(Integer) - Method in class org.refcodes.tabular.impls.IntegerColumnImpl
 
toStorageStrings(String) - Method in class org.refcodes.tabular.impls.StringColumnImpl
 
toStorageStrings(String[]) - Method in class org.refcodes.tabular.impls.StringsColumnImpl
 
toStorageStringsRecord(Row<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
toStorageStringsRecord(Row<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
A special Column implementation might provide its own text exchange format for the given objects.
toStorageStringsRow(Record<? extends T>) - Method in interface org.refcodes.tabular.HeaderTemplate
A special Column implementation might provide its own text exchange format for the given objects.
toStorageStringsRow(Record<? extends T>) - Method in class org.refcodes.tabular.impls.AbstractHeader
A special Column implementation might provide its own text exchange format for the given objects.
toString(Record<?>) - Static method in class org.refcodes.tabular.TabularUtility
Creates the string representation from from the given record.
toString(Record<?>, char, DateTimeFormatter[]) - Static method in class org.refcodes.tabular.TabularUtility
Creates the string representation from from the given record.
toSubset(Record<T>, Header<?>) - Static method in class org.refcodes.tabular.TabularUtility
Returns a Record just containing the keys as defined in the Header; keys not found in the provided Record are ignored. ------------------------------------------------------------------------- TODO: Think about moving this method to the Header

V

valueOf(String) - Static method in enum org.refcodes.tabular.PrintStackTrace
Returns the enum constant of this type with the specified name.
values() - Method in class org.refcodes.tabular.impls.AbstractHeader
 
values() - Static method in enum org.refcodes.tabular.PrintStackTrace
Returns an array containing the constants of this enum type, in the order they are declared.

W

withColumns(Column<? extends T>...) - Method in interface org.refcodes.tabular.Columns
 
withColumns(C...) - Method in interface org.refcodes.tabular.ColumnsTemplate
 
withColumns(FormattedColumn<? extends T>...) - Method in interface org.refcodes.tabular.FormattedColumns
 
withColumnWidth(int) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withColumnWidthType(ColumnWidthType) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withEscapeCode(String) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withEscapeCodeFactory(EscapeCodeFactory) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withHeader(Header<T>) - Method in interface org.refcodes.tabular.HeaderAccessor.HeaderBuilder
Sets the Headerto use returns this builder as of the builder pattern.
withHeaderEscapeCode(String) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withHeaderEscapeCodeFactory(EscapeCodeFactory) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withHeaderHorizAlignTextMode(HorizAlignTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withHeaderMoreTextMode(MoreTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withHeaderSplitTextMode(SplitTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withHeaderTextFormatMode(TextFormatMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withHide() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withHorizAlignTextMode(HorizAlignTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withMoreTextMode(MoreTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withName(String) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withResetEscapeCode(String) - Method in interface org.refcodes.tabular.FormattedHeader
Sets the ANSI reset Escape-Code for this FormattedHeader instance as of the builder pattern.
withRowEscapeCode(String) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withRowEscapeCodeFactory(EscapeCodeFactory) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withRowHorizAlignTextMode(HorizAlignTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withRowMoreTextMode(MoreTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withRowSplitTextMode(SplitTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withRowTextFormatMode(TextFormatMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withShow() - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withSplitTextMode(SplitTextMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withTextFormatMode(TextFormatMode) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
withVisible(boolean) - Method in class org.refcodes.tabular.impls.FormattedColumnDecorator
 
A C D E F G H I K N O P R S T V W 
Skip navigation links

Copyright © 2017. All rights reserved.