Package ch.rabanti.nanoxlsx4j.styles
Class Border
java.lang.Object
ch.rabanti.nanoxlsx4j.styles.AbstractStyle
ch.rabanti.nanoxlsx4j.styles.Border
- All Implemented Interfaces:
Comparable<AbstractStyle>
Class representing a Border entry. The Border entry is used to define frames and cell borders
- Author:
- Raphael Stoeckli
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Default border color as constantstatic final Border.StyleValue
Default border style as constant -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncopy()
Method to copy the current object to a new oneGets the color code of the bottom border.Gets the style of bottom cell borderGets the color code of the diagonal lines.Gets the style of the diagonal linesGets the color code of the left border.Gets the style of left cell borderGets the color code of the right border.Gets the style of right cell borderstatic String
getStyleName
(Border.StyleValue style) Gets the border style name from the enumGets the color code of the top border.Gets the style of top cell borderint
hashCode()
Override method to calculate the hash of this componentboolean
Gets the downwards diagonal lineboolean
Gets the upwards diagonal lineboolean
isEmpty()
Method to determine whether the object has no values but the default values (means: is empty and must not be processed)void
setBottomColor
(String bottomColor) Sets the color code of the bottom border.void
setBottomStyle
(Border.StyleValue bottomStyle) Sets the style of bottom cell bordervoid
setDiagonalColor
(String diagonalColor) Sets the color code of the diagonal lines.void
setDiagonalDown
(boolean diagonalDown) Sets the downwards diagonal linevoid
setDiagonalStyle
(Border.StyleValue diagonalStyle) Sets the style of the diagonal linesvoid
setDiagonalUp
(boolean diagonalUp) Sets the upwards diagonal linevoid
setLeftColor
(String leftColor) Sets the color code of the left border.void
setLeftStyle
(Border.StyleValue leftStyle) Sets the style of left cell bordervoid
setRightColor
(String rightColor) Sets the color code of the right border.void
setRightStyle
(Border.StyleValue rightStyle) Sets the style of right cell bordervoid
setTopColor
(String topColor) Sets the color code of the top border.void
setTopStyle
(Border.StyleValue topStyle) Sets the style of top cell bordertoString()
Override toString methodMethods inherited from class ch.rabanti.nanoxlsx4j.styles.AbstractStyle
compareTo, equals, getInternalID, setInternalID
-
Field Details
-
DEFAULT_BORDER_STYLE
Default border style as constant -
DEFAULT_BORDER_COLOR
Default border color as constant- See Also:
-
-
Constructor Details
-
Border
public Border()Default constructor
-
-
Method Details
-
getStyleName
Gets the border style name from the enum- Parameters:
style
- Enum to process- Returns:
- The valid value of the border style as String
-
getLeftStyle
Gets the style of left cell border- Returns:
- Style of left cell border
-
setLeftStyle
Sets the style of left cell border- Parameters:
leftStyle
- Style of left cell border
-
getRightStyle
Gets the style of right cell border- Returns:
- Style of right cell border
-
setRightStyle
Sets the style of right cell border- Parameters:
rightStyle
- Style of right cell border
-
getTopStyle
Gets the style of top cell border- Returns:
- Style of top cell border
-
setTopStyle
Sets the style of top cell border- Parameters:
topStyle
- Style of top cell border
-
getBottomStyle
Gets the style of bottom cell border- Returns:
- Style of bottom cell border
-
setBottomStyle
Sets the style of bottom cell border- Parameters:
bottomStyle
- Style of bottom cell border
-
getDiagonalStyle
Gets the style of the diagonal lines- Returns:
- Style of the diagonal lines
-
setDiagonalStyle
Sets the style of the diagonal lines- Parameters:
diagonalStyle
- Style of the diagonal lines
-
isDiagonalDown
public boolean isDiagonalDown()Gets the downwards diagonal line- Returns:
- If true, the downwards diagonal line is used
-
setDiagonalDown
public void setDiagonalDown(boolean diagonalDown) Sets the downwards diagonal line- Parameters:
diagonalDown
- If true, the downwards diagonal line is used
-
isDiagonalUp
public boolean isDiagonalUp()Gets the upwards diagonal line- Returns:
- If true, the upwards diagonal line is used
-
setDiagonalUp
public void setDiagonalUp(boolean diagonalUp) Sets the upwards diagonal line- Parameters:
diagonalUp
- If true, the upwards diagonal line is used
-
getLeftColor
Gets the color code of the left border. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Returns:
- Color code (ARGB)
-
setLeftColor
Sets the color code of the left border. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Parameters:
leftColor
- Color code (ARGB)
-
getRightColor
Gets the color code of the right border. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Returns:
- Color code (ARGB)
-
setRightColor
Sets the color code of the right border. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Parameters:
rightColor
- Color code (ARGB)
-
getTopColor
Gets the color code of the top border. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Returns:
- Color code (ARGB)
-
setTopColor
Sets the color code of the top border. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Parameters:
topColor
- Color code (ARGB)
-
getBottomColor
Gets the color code of the bottom border. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Returns:
- Color code (ARGB)
-
setBottomColor
Sets the color code of the bottom border. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Parameters:
bottomColor
- Color code (ARGB)
-
getDiagonalColor
Gets the color code of the diagonal lines. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Returns:
- Color code (ARGB)
-
setDiagonalColor
Sets the color code of the diagonal lines. The value is expressed as hex string with the format AARRGGBB. AA (Alpha) is usually FF- Parameters:
diagonalColor
- Color code (ARGB)
-
isEmpty
public boolean isEmpty()Method to determine whether the object has no values but the default values (means: is empty and must not be processed)- Returns:
- True if empty, otherwise false
-
toString
Override toString method -
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
-
hashCode
public int hashCode()Override method to calculate the hash of this component
-