| Package | Description |
|---|---|
| com.github.jferard.fastods.datastyle | |
| com.github.jferard.fastods.style | |
| com.github.jferard.fastods.util |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DataStyle
A data style. 16.27.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BooleanStyle
OpenDocument 16.27.23 - number:boolean-style
|
class |
CurrencyStyle
16.27.7 number:currency-style
|
class |
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
|
class |
FloatStyle
WHERE ?
|
class |
FractionStyle
WHERE ?
|
class |
PercentageStyle
WHERE ?
|
class |
ScientificNumberStyle
WHERE ?
|
class |
TextDataStyle
16.27.25 number:text-style
|
class |
TimeStyle
content.xml/office:document-content/office:automatic-styles/number:
time-style styles.xml/office:document-styles/office:styles/number:time-style
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
FontFaceContainerStyle
A style that may contain a font face usage
|
interface |
ObjectStyle
16.2 style:style
The ObjectStyle class represents a style:style element.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DrawFillBitmap |
class |
DrawFillGradient
16.40.1 draw:gradient
|
class |
DrawFillHatch
16.40.5 draw:hatch
|
class |
GraphicStyle
16.37 Graphic Styles
|
class |
MasterPageStyle
OpenDocument 16.9 style:master-page
|
class |
PageLayoutStyle
OpenDocument 16.5 style:page-layout
|
class |
PageStyle
OpenDocument 16.5 style:page-layout
OpenDocument 16.9 style:master-page
The PageStyle class represents a combination of a master page style and a page layout style:
formatting + header and footer.
16.5 style:page-layout
The style:page-layout element represents the styles that specify the formatting properties of
a page.
16.9 style:master-page
In text and spreadsheet documents, the style:master-page element contains the content of
headers and footers.
|
class |
TableCellStyle
WHERE ?
|
class |
TableColumnStyle |
class |
TableRowStyle |
class |
TableStyle
content.xml/office:document-content/office:automatic-styles
|
class |
TextStyle
OpenDocument 16.27.28
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
Style
A style (data style or object style)
|
Copyright © 2016–2021. All rights reserved.