public interface PlainDataOutput
| Modifier and Type | Method and Description |
|---|---|
RowContext |
date(Date date)
Write mandatory date to the current cell.
|
RowContext |
date(Date date,
Style style)
Write mandatory date to the current cell.
|
RowContext |
date(com.google.common.base.Optional<Date> date) |
RowContext |
date(com.google.common.base.Optional<Date> date,
Style style) |
RowContext |
multilineText(Collection<String> lines)
Write mandatory multiline text to the current cell.
|
RowContext |
multilineText(Collection<String> lines,
Style style)
Write mandatory multiline text to the current cell.
|
RowContext |
number(Number number)
Write mandatory number to the current cell.
|
RowContext |
number(Number number,
Style style)
Write mandatory number to the current cell.
|
RowContext |
number(com.google.common.base.Optional<? extends Number> number)
Write optional number to the current cell.
|
RowContext |
number(com.google.common.base.Optional<? extends Number> number,
Style style)
Write optional number to the current cell and apply style provided.
|
RowContext |
text(com.google.common.base.Optional<String> text)
Write optional text to the current cell.
|
RowContext |
text(com.google.common.base.Optional<String> text,
Style style)
Write optional text to the current cell and apply style provided.
|
RowContext |
text(String text)
Write mandatory text to the current cell.
|
RowContext |
text(String text,
Style style)
Write mandatory text to the current cell.
|
RowContext text(String text)
StyleConfiguration.getTextStyle() on the current level is applied.
For details of style configuration please see StyleConfiguration implementation used.text - non-null stringRowContext text(String text, Style style)
StyleConfiguration.getTextStyle() with a provided style is applied.
For details of style configuration please see StyleConfiguration implementation used.
For details of style merging see actual Style in use.text - non-null stringstyle - style to be applied to the current cell on top of the predefined styleRowContext text(com.google.common.base.Optional<String> text)
text(String) but the value is optional.text - for Present string - value is written, on Absent value the cell is skippedRowContext text(com.google.common.base.Optional<String> text, Style style)
text(String, Style) but the value is optional.text - for Present string - value is written, on Absent value the cell is skippedstyle - style to be applied to the current cell on top of the predefined styleRowContext multilineText(Collection<String> lines)
StyleConfiguration.getTextStyle() on the current level is applied.
For details of style configuration please see StyleConfiguration implementation used.lines - non-null collection of stringsRowContext multilineText(Collection<String> lines, Style style)
StyleConfiguration.getTextStyle() with a provided style is applied.
For details of style configuration please see StyleConfiguration implementation used.
For details of style merging see actual Style in use.lines - non-null collection of stringsstyle - style to be applied to the current cell on top of the predefined styleRowContext number(Number number)
StyleConfiguration.getNumberStyle() on the current level is applied.
For details of style configuration please see StyleConfiguration implementation used.number - non-null numberRowContext number(Number number, Style style)
StyleConfiguration.getNumberStyle() with a provided style is applied.
For details of style configuration please see StyleConfiguration implementation used.
For details of style merging see actual Style in use.number - non-null numberstyle - style to be applied to the current cell on top of the predefined styleRowContext number(com.google.common.base.Optional<? extends Number> number)
number(Number) but the value is optional.number - Present value is written, on Absent value the cell is skippedRowContext number(com.google.common.base.Optional<? extends Number> number, Style style)
number(Number, Style) but the value is optional.number - Present value is written, on Absent value the cell is skippedstyle - style to be applied to the current cell on top of the predefined styleRowContext date(Date date)
StyleConfiguration.getDateStyle() on the current level is applied.
For details of style configuration please see StyleConfiguration implementation used.
For details of style merging see actual Style in use.date - non-null dateRowContext date(Date date, Style style)
StyleConfiguration.getDateStyle() with a provided style is applied.
For details of style configuration please see StyleConfiguration implementation used.
For details of style merging see actual Style in use.date - non-null datestyle - style to be applied to the current cell on top of the predefined styleRowContext date(com.google.common.base.Optional<Date> date)
RowContext date(com.google.common.base.Optional<Date> date, Style style)
Copyright © 2014. All rights reserved.