Package ch.rabanti.nanoxlsx4j.styles
Class NumberFormat
java.lang.Object
ch.rabanti.nanoxlsx4j.styles.AbstractStyle
ch.rabanti.nanoxlsx4j.styles.NumberFormat
- All Implemented Interfaces:
Comparable<AbstractStyle>
Class representing a NumberFormat entry. The NumberFormat entry is used to define cell formats like currency or date
- Author:
- Raphael Stoeckli
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Enum for the defined number formatsstatic class
Class represents the evaluation of a number format (number) and its purpose -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Start ID for custom number formats as constant (value 164)static final NumberFormat.FormatNumber
Default format number as constant -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncopy()
Method to copy the current object to a new oneGets the custom format code in the notation of Excelint
Gets the format number of the custom format.Gets the format number.int
hashCode()
Override method to calculate the hash of this componentboolean
Gets whether this object is a custom formatstatic boolean
Determines whether a defined style format number represents a date (or date and time).
Note: Custom number formats (higher than 164), as well as not officially defined numbers (below 164) are currently not considered during the check and will return falsestatic boolean
Determines whether a defined style format number represents a time.
Note: Custom number formats (higher than 164), as well as not officially defined numbers (below 164) are currently not considered during the check and will return falsevoid
setCustomFormatCode
(String customFormatCode) Sets the raw custom format code in the notation of Excel.void
setCustomFormatID
(int customFormatID) Sets the format number of the custom format.void
setNumber
(NumberFormat.FormatNumber number) Sets the format number.toString()
Override toString methodtryParseFormatNumber
(int number) Tries to parse registered format numbers.Methods inherited from class ch.rabanti.nanoxlsx4j.styles.AbstractStyle
compareTo, equals, getInternalID, setInternalID
-
Field Details
-
CUSTOMFORMAT_START_NUMBER
public static final int CUSTOMFORMAT_START_NUMBERStart ID for custom number formats as constant (value 164)- See Also:
-
DEFAULT_NUMBER
Default format number as constant
-
-
Constructor Details
-
NumberFormat
public NumberFormat()Default constructor
-
-
Method Details
-
getNumber
Gets the format number. Set it to custom (164) in case of custom number formats- Returns:
- Format number
-
setNumber
Sets the format number. Set it to custom (164) in case of custom number formats- Parameters:
number
- Format number
-
getCustomFormatID
public int getCustomFormatID()Gets the format number of the custom format. Must be higher or equal then predefined custom number (164)- Returns:
- Format number of the custom format
-
setCustomFormatID
public void setCustomFormatID(int customFormatID) Sets the format number of the custom format. Must be higher or equal then predefined custom number (164)- Parameters:
customFormatID
- Format number of the custom format
-
getCustomFormatCode
Gets the custom format code in the notation of Excel- Returns:
- Custom format code
-
setCustomFormatCode
Sets the raw custom format code in the notation of Excel. The code is not escaped or un-escaped (on workbook loading)- API Note:
- Currently, there is no auto-escaping applied to custom format strings. For instance, to add a white space, internally it is escaped by a backspace (\ ). To get a valid custom format code, this escaping must be applied manually, according to OOXML specs: Part 1 - Fundamentals And Markup Language Reference, Chapter 18.8.31
- Parameters:
customFormatCode
- Custom format code- Throws:
FormatException
- thrown if the passed value is null or empty
-
isCustomFormat
public boolean isCustomFormat()Gets whether this object is a custom format- Returns:
- Returns true in case of a custom format (higher or equals 164)
-
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 -
tryParseFormatNumber
Tries to parse registered format numbers. If the parsing fails, it is assumed that the number is a custom format number (164 or higher) and 'custom' is returned- Parameters:
number
- Raw number to parse- Returns:
- Format range. Will return 'invalid' if out of any range (e.g. negative value)
-
isDateFormat
Determines whether a defined style format number represents a date (or date and time).
Note: Custom number formats (higher than 164), as well as not officially defined numbers (below 164) are currently not considered during the check and will return false- Parameters:
number
- Format number to check- Returns:
- True if the format represents a date, otherwise false
-
isTimeFormat
Determines whether a defined style format number represents a time.
Note: Custom number formats (higher than 164), as well as not officially defined numbers (below 164) are currently not considered during the check and will return false- Parameters:
number
- Format number to check- Returns:
- True if the format represents a time, otherwise false
-