Class SpelledYearSymbol
java.lang.Object
com.aquima.interactions.foundation.text.symbol.AbstractFormatOnlySymbol
com.aquima.interactions.framework.mask.impl.date.SpelledYearSymbol
- All Implemented Interfaces:
IDateSymbol
,Serializable
This is a symbol implementation to spell a year. This implementation is for masks only, so parsing strings will throw
an exception.
- Since:
- 6.0
- Author:
- Jon van Leuven
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSpelledYearSymbol
(ISpeller speller) Construct a spelled year symbol with a speller. -
Method Summary
Modifier and TypeMethodDescriptionvoid
format
(LocalDateTime ldt, StringBuilder sb) Formats this symbol's field of the specified date/time, and appends it to the StringBuilder.void
format
(Calendar calendar, StringBuffer sb) Formats this symbol's field of the specified Calendar, and appends it to the StringBuffer.Return the pattern representation of this DateSymbol.toString()
Methods inherited from class com.aquima.interactions.foundation.text.symbol.AbstractFormatOnlySymbol
getWidth, parse
-
Constructor Details
-
Method Details
-
format
Description copied from interface:IDateSymbol
Formats this symbol's field of the specified Calendar, and appends it to the StringBuffer.- Parameters:
calendar
- Calendar object which holds the date/time that needs to be formatted. The instance is created inside the format method of the DateFormat class.sb
- StringBuffer in which to place the result of the formatting operation.
-
format
Description copied from interface:IDateSymbol
Formats this symbol's field of the specified date/time, and appends it to the StringBuilder.- Parameters:
ldt
- The date/time that needs to be formattedsb
- StringBuilder in which to place the result of the formatting operation
-
getPattern
Description copied from interface:IDateSymbol
Return the pattern representation of this DateSymbol.- Returns:
- String representing the pattern.
-
toString
-