Package | Description |
---|---|
com.asakusafw.dmdl.directio.text |
Formatted text support for Direct I/O.
|
com.asakusafw.runtime.io.text |
Extracting and generating formatted text files.
|
com.asakusafw.runtime.io.text.csv |
Extracting and generating CSV text files.
|
com.asakusafw.runtime.io.text.tabular |
Extracting and generating tabular-style text files.
|
Modifier and Type | Method and Description |
---|---|
Value<LineSeparator> |
TextFormatSettings.getLineSeparator()
Returns the line separator.
|
Modifier and Type | Method and Description |
---|---|
static LineSeparator |
LineSeparator.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineSeparator[] |
LineSeparator.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Field and Description |
---|---|
static LineSeparator |
CsvTextFormat.DEFAULT_LINE_SEPARATOR
The default line separator.
|
Modifier and Type | Method and Description |
---|---|
CsvTextFormat.Builder |
CsvTextFormat.Builder.withLineSeparator(LineSeparator newValue)
Sets the line separator.
|
Constructor and Description |
---|
CsvFieldWriter(Writer writer,
LineSeparator lineSeparator,
char fieldSeparator,
char quoteCharacter,
boolean allowLineFeed,
QuoteStyle defaultQuoteStyle,
QuoteStyle headerQuoteStyle,
UnaryOperator<CharSequence> transformer)
Creates a new instance.
|
Modifier and Type | Field and Description |
---|---|
static LineSeparator |
TabularTextFormat.DEFAULT_LINE_SEPARATOR
The default line separator.
|
Modifier and Type | Method and Description |
---|---|
TabularTextFormat.Builder |
TabularTextFormat.Builder.withLineSeparator(LineSeparator newValue)
Sets the line separator.
|
Constructor and Description |
---|
TabularFieldWriter(Writer writer,
LineSeparator lineSeparator,
char fieldSeparator,
EscapeSequence escapeSequences,
UnaryOperator<CharSequence> transformer)
Creates a new instance.
|
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.