Interface FastDatePrinter.Rule
-
- All Known Subinterfaces:
FastDatePrinter.NumberRule
- All Known Implementing Classes:
FastDatePrinter.CharacterLiteral
,FastDatePrinter.DayInWeekField
,FastDatePrinter.Iso8601_Rule
,FastDatePrinter.PaddedNumberField
,FastDatePrinter.StringLiteral
,FastDatePrinter.TextField
,FastDatePrinter.TimeZoneNameRule
,FastDatePrinter.TimeZoneNumberRule
,FastDatePrinter.TwelveHourField
,FastDatePrinter.TwentyFourHourField
,FastDatePrinter.TwoDigitMonthField
,FastDatePrinter.TwoDigitNumberField
,FastDatePrinter.TwoDigitYearField
,FastDatePrinter.UnpaddedMonthField
,FastDatePrinter.UnpaddedNumberField
,FastDatePrinter.WeekYear
- Enclosing class:
- FastDatePrinter
private static interface FastDatePrinter.Rule
Inner class defining a rule.
-
-
Field Summary
Fields Modifier and Type Field Description static FastDatePrinter.Rule[]
EMPTY_ARRAY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
appendTo(java.lang.Appendable buf, java.util.Calendar calendar)
Appends the value of the specified calendar to the output buffer based on the rule implementation.int
estimateLength()
Returns the estimated length of the result.
-
-
-
Field Detail
-
EMPTY_ARRAY
static final FastDatePrinter.Rule[] EMPTY_ARRAY
-
-
Method Detail
-
estimateLength
int estimateLength()
Returns the estimated length of the result.- Returns:
- the estimated length
-
appendTo
void appendTo(java.lang.Appendable buf, java.util.Calendar calendar) throws java.io.IOException
Appends the value of the specified calendar to the output buffer based on the rule implementation.- Parameters:
buf
- the output buffercalendar
- calendar to be appended- Throws:
java.io.IOException
- if an I/O error occurs
-
-