Package ch.rabanti.nanoxlsx4j.styles
Class Style
java.lang.Object
ch.rabanti.nanoxlsx4j.styles.AbstractStyle
ch.rabanti.nanoxlsx4j.styles.Style
- All Implemented Interfaces:
Comparable<AbstractStyle>
Class representing a style which consists of several components
- Author:
- Raphael Stoeckli
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionappend
(AbstractStyle styleToAppend) Appends the specified style parts to the current one.copy()
Method to copy the current object to a new oneCopies the current object as cast styleGets the border component of the styleGets the cellXf component of the stylegetFill()
Gets the fill component of the stylegetFont()
Gets the font component of the stylegetName()
Gets the informal name of the style.Gets the number format component of the styleint
hashCode()
Override method to calculate the hash of this componentboolean
Gets whether the style is system internalvoid
Sets the border component of the stylevoid
Sets the cellXf component of the stylevoid
Sets the fill component of the stylevoid
Sets the font component of the stylevoid
Sets the name of the style.void
setNumberFormat
(NumberFormat numberFormatRef) Sets the number format component of the styletoString()
Override toString methodMethods inherited from class ch.rabanti.nanoxlsx4j.styles.AbstractStyle
compareTo, equals, getInternalID, setInternalID
-
Constructor Details
-
Style
public Style()Default constructor -
Style
Constructor with parameters- Parameters:
name
- Name of the style
-
Style
Constructor with parameters (internal use)- Parameters:
name
- Name of the styleforcedOrder
- Number of the style for sorting purpose. The style will be placed at this position (internal use only)internal
- If true, the style is marked as internal
-
-
Method Details
-
getBorder
Gets the border component of the style- Returns:
- Border of the style
-
getCellXf
Gets the cellXf component of the style- Returns:
- CellXf of the style
-
getFill
Gets the fill component of the style- Returns:
- Fill of the style
-
getFont
Gets the font component of the style- Returns:
- Font of the style
-
getNumberFormat
Gets the number format component of the style- Returns:
- Number format of the style
-
setBorder
Sets the border component of the style- Parameters:
borderRef
- Border of the style
-
setCellXf
Sets the cellXf component of the style- Parameters:
cellXfRef
- CellXf of the style
-
setFill
Sets the fill component of the style- Parameters:
fillRef
- Fill of the style
-
setFont
Sets the font component of the style- Parameters:
fontRef
- Font of the style
-
setNumberFormat
Sets the number format component of the style- Parameters:
numberFormatRef
- Number format of the style
-
getName
Gets the informal name of the style.- Returns:
- Name
-
setName
Sets the name of the style. If not defined, the automatically calculated hash will be used as name- API Note:
- The name is informal and not considered as an identifier, when collecting all styles for a workbook
- Parameters:
name
- Name
-
isInternalStyle
public boolean isInternalStyle()Gets whether the style is system internal- Returns:
- If true, the style is an internal style. Such styles are not meant to be altered
-
append
Appends the specified style parts to the current one. The parts can be instances of subclasses like Border or CellXf or a Style instance. Only the altered properties of the specified style or style part that differs from a new / untouched style instance will be appended. This enables method chaining- Parameters:
styleToAppend
- The style to append or a subclass of Style- Returns:
- Current style with appended style parts
-
toString
Override toString method -
hashCode
public int hashCode()Override method to calculate the hash of this component -
copy
Method to copy the current object to a new one- Specified by:
copy
in classAbstractStyle
- Returns:
- Copy of the current object without the internal ID
-
copyStyle
Copies the current object as cast style- Returns:
- Copy of the current object without the internal ID
-