| Interface | Description |
|---|---|
| DataStyle |
A data style. 16.27.
|
| DataStyleBuilder<S extends DataStyle,T extends DataStyleBuilder<S,T>> |
A data style builder.
|
| DecimalStyle |
A style with a decimal number
|
| DecimalStyleBuilder<T> |
A builder for decimal styles
|
| IsVolatileBuilder<T> |
A style that may be volatile
|
| LocalizedBuilder<T> |
A builder for Localized elements
|
| NumberStyle |
A number style
|
| NumberStyleBuilder<S,T extends NumberStyleBuilder<S,T>> |
| Class | Description |
|---|---|
| BooleanStyle |
OpenDocument 16.27.23 - number:boolean-style
|
| BooleanStyleBuilder | |
| CurrencyStyle |
16.27.7 number:currency-style
|
| CurrencyStyleBuilder | |
| DataStyles |
The
DataStyles class represents a set of DataStyles. |
| DataStylesBuilder |
The data style for the current locale
|
| DateStyle |
content.xml/office:document-content/office:automatic-styles/number:
date-style styles.xml/office:document-styles/office:styles/number:date-style
To create a custom `DateStyle`, first create a new `DateStyleFormat` and pass it to
a `DateStyleBuilder`:
DateStyleFormat f = new DateStyleFormat(DateStyleFormat.text("Month of "),
DateStyleFormat.LONG_TEXTUAL_MONTH);
DateStyle s = DateStyleBuilder("my style", Locale.US).dateFormat(f).build();
... // use the style
Note that the bricks from `TimeStyleFormat` are allowed too:
DateStyleFormat f = new DateStyleFormat(TimeStyleFormat.MINUTES);
DateStyle s = DateStyleBuilder("my style", Locale.US).dateFormat(f).build();
... // use the style
|
| DateStyle.Format |
The format of the date
|
| DateStyleBuilder | |
| DateTimeStyleFormat |
16.27.10 number:date-style
The class `DateStyleFormat` represents a style for date and time values.
|
| FloatStyle |
WHERE ?
|
| FloatStyleBuilder | |
| FractionStyle |
WHERE ?
|
| FractionStyleBuilder | |
| NumberStyleHelperBuilder | |
| PercentageStyle |
WHERE ?
|
| PercentageStyleBuilder | |
| ScientificNumberStyle |
WHERE ?
|
| ScientificNumberStyleBuilder | |
| TextDataStyle |
16.27.25 number:text-style
|
| TextDataStyleBuilder |
16.27.25 number:text-style
|
| TimeStyle |
content.xml/office:document-content/office:automatic-styles/number:
time-style styles.xml/office:document-styles/office:styles/number:time-style
|
| TimeStyle.Format |
A time format
|
| TimeStyleBuilder |
| Enum | Description |
|---|---|
| CurrencyStyle.SymbolPosition |
A currency symbol may be at the beginning or the end of the expression
|
Copyright © 2016–2021. All rights reserved.