Modifier and Type | Class and Description |
---|---|
static class |
Style.TEXT_ALIGMENT
Defines the text position of a Cell
|
static class |
Style.VERTICAL_TEXT_ALIGMENT
Defines the text position of a Cell in a vertical axis
|
Constructor and Description |
---|
Style()
Constructs an empty-default Style.
|
Style(boolean bold,
boolean italic,
boolean underline,
Color fontColor,
Color backgroundColor,
int fontSize)
Deprecated.
|
Style(boolean bold,
boolean italic,
boolean underline,
Color fontColor,
Color backgroundColor,
int fontSize,
Borders borders,
boolean wrap)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
addCondition(ConditionalFormat format)
Add a conditional format subrule in the style.
|
Object |
clone() |
boolean |
equals(Object o) |
Color |
getBackgroundColor()
Returns the cell background color.
|
Borders |
getBorders()
Returns the borders properties.
|
List<ConditionalFormat> |
getConditions()
Get a list of all conditional format rules
Conditional format rules are specific properties which are applied if the cell fullfills a specific condition
|
Map<String,String> |
getCssStyles()
Returns a Map representing this class as css-styles.
|
String |
getDataStyle()
Returns the data style.
|
Color |
getFontColor()
Returns the font color.
|
int |
getFontSize()
Returns the font size
|
Style.TEXT_ALIGMENT |
getTextAligment()
Get text aligment of the cell
|
Style.VERTICAL_TEXT_ALIGMENT |
getVerticalTextAligment()
Get the vertical text aligment of the cell
|
boolean |
hasBorders()
Tells if the style has any border.
|
int |
hashCode() |
boolean |
hasTableCellProperties()
Tells whether the style has table cell properties.
|
boolean |
isBold()
Determines if the font has bold style or not.
|
boolean |
isDefault()
Determine if this has default rules or not
|
boolean |
isItalic()
Determines if the font has italic style or not.
|
boolean |
isUnderline()
Returns if the font has a underline style or not
|
boolean |
isWrap()
Gets the wrapping nature.
|
void |
removeCondition(int i)
Remove a specific condition rule in an index
|
void |
setBackgroundColor(Color backgroundColor)
Set the background color
|
void |
setBold(boolean bold)
Set a bold font style
|
void |
setBorders(Borders borders)
Sets the borders properties.
|
void |
setDataStyle(String dataStyle)
Sets the data style that tells office software how to interpret and format content entered into a cell.
|
void |
setFontColor(Color fontColor)
Set the font color
|
void |
setFontSize(int fontSize)
Sets the font size
|
void |
setItalic(boolean italic)
Set a italic font style
|
void |
setTextAligment(Style.TEXT_ALIGMENT p)
Set text's aligment of the cell's text.
|
void |
setUnderline(boolean underline)
Set a underline font style
|
void |
setVerticalTextAligment(Style.VERTICAL_TEXT_ALIGMENT p)
Set text's aligment of the cell's text in a vertical axis.
|
void |
setWrap(boolean wrap)
Sets the wrapping nature.
|
String |
toString()
Returns a String of this class in a CSS way.
|
String |
toString(String prefix)
Overloaded method of toString(), it allows a slight customization in the output.
|
public Style()
@Deprecated public Style(boolean bold, boolean italic, boolean underline, Color fontColor, Color backgroundColor, int fontSize)
@Deprecated public Style(boolean bold, boolean italic, boolean underline, Color fontColor, Color backgroundColor, int fontSize, Borders borders, boolean wrap)
public boolean isDefault()
public boolean isBold()
public boolean isItalic()
public Color getFontColor()
public Color getBackgroundColor()
public int getFontSize()
public void addCondition(ConditionalFormat format)
format
- The conditional format rule to be addedpublic List<ConditionalFormat> getConditions()
public void removeCondition(int i)
i
- The index of the condition rule.IndexOutOfBoundsException
- if the index is invalidpublic void setBackgroundColor(Color backgroundColor)
backgroundColor
- The background color of the cell. It can be null.public void setFontColor(Color fontColor)
fontColor
- The font color of the cell. It can be null.public void setBold(boolean bold)
bold
- True for sets a bold style font.public void setItalic(boolean italic)
italic
- True for sets a italic style font.public boolean isUnderline()
public void setUnderline(boolean underline)
underline
- True for sets a underline style font.public void setFontSize(int fontSize)
fontSize
- The font size to set. It must be greater of -1, a -1 value indicates no font size.IllegalArgumentException
- if the font size is less of -1public Borders getBorders()
public void setBorders(Borders borders)
borders
- Borders properties.public boolean isWrap()
public void setWrap(boolean wrap)
wrap
- Specifies if the text must be wrapped inside the cell.public boolean hasTableCellProperties()
public boolean hasBorders()
public void setTextAligment(Style.TEXT_ALIGMENT p)
p
- Style.TEXT_ALIGMENT
Left, Center, Rightpublic Style.TEXT_ALIGMENT getTextAligment()
Style.TEXT_ALIGMENT
Left, Center, Rightpublic void setVerticalTextAligment(Style.VERTICAL_TEXT_ALIGMENT p)
p
- Style.VERTICAL_TEXT_ALIGMENT
Top, Middle, Bottompublic Style.VERTICAL_TEXT_ALIGMENT getVerticalTextAligment()
Style.VERTICAL_TEXT_ALIGMENT
Top, Middle, Bottompublic String getDataStyle()
null
, @
, or YYYY-MM-DD
setDataStyle(String)
public void setDataStyle(String dataStyle)
null
, which is the default value and permits interpretation.@
, which forces all content to be interpreted as plain text.YYYY-MM-DD
, which formats dates in the ISO style.dataStyle
- null
, @
, or YYYY-MM-DD
public Object clone() throws CloneNotSupportedException
clone
in class Object
CloneNotSupportedException
public Map<String,String> getCssStyles()
public String toString()
public String toString(String prefix)
style.setBold(true); style.setItalic(true); style.toString("-fx-"); // It returns: // // -fx-font-weight: bold; // -fx-font-style: italic;
prefix
- a prefix to add in every CSS key. For example: "-fx-"Copyright © 2023. All rights reserved.