Package org.apache.commons.lang3.time
Class FastDatePrinter.PaddedNumberField
- java.lang.Object
-
- org.apache.commons.lang3.time.FastDatePrinter.PaddedNumberField
-
- All Implemented Interfaces:
FastDatePrinter.NumberRule
,FastDatePrinter.Rule
- Enclosing class:
- FastDatePrinter
private static class FastDatePrinter.PaddedNumberField extends java.lang.Object implements FastDatePrinter.NumberRule
Inner class to output a padded number.
-
-
Constructor Summary
Constructors Constructor Description PaddedNumberField(int field, int size)
Constructs an instance ofPaddedNumberField
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
appendTo(java.lang.Appendable buffer, int value)
Appends the specified value to the output buffer based on the rule implementation.void
appendTo(java.lang.Appendable buffer, 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.
-
-
-
Method Detail
-
estimateLength
public int estimateLength()
Returns the estimated length of the result.- Specified by:
estimateLength
in interfaceFastDatePrinter.Rule
- Returns:
- the estimated length
-
appendTo
public void appendTo(java.lang.Appendable buffer, java.util.Calendar calendar) throws java.io.IOException
Appends the value of the specified calendar to the output buffer based on the rule implementation.- Specified by:
appendTo
in interfaceFastDatePrinter.Rule
- Parameters:
buffer
- the output buffercalendar
- calendar to be appended- Throws:
java.io.IOException
- if an I/O error occurs.
-
appendTo
public final void appendTo(java.lang.Appendable buffer, int value) throws java.io.IOException
Appends the specified value to the output buffer based on the rule implementation.- Specified by:
appendTo
in interfaceFastDatePrinter.NumberRule
- Parameters:
buffer
- the output buffervalue
- the value to be appended- Throws:
java.io.IOException
- if an I/O error occurs.
-
-