org.goda.time.format
public interface PeriodPrinter extends PeriodPrinterParser
Application users will rarely use this class directly. Instead, you
will use one of the factory classes to create a PeriodFormatter.
The factory classes are:
- PeriodFormatterBuilder
- PeriodFormat
- ISOPeriodFormat
PeriodFormatter,
PeriodFormatterBuilder,
PeriodFormat| Modifier and Type | Method and Description |
|---|---|
int |
calculatePrintedLength(ReadablePeriod period,
Locale locale)
Returns the exact number of characters produced for the given period.
|
int |
countFieldsToPrint(ReadablePeriod period,
int stopAt,
Locale locale)
Returns the amount of fields from the given period that this printer
will print.
|
void |
printTo(StringBuffer buf,
ReadablePeriod period,
Locale locale)
Prints a ReadablePeriod to a StringBuffer.
|
int calculatePrintedLength(ReadablePeriod period, Locale locale)
period - the period to uselocale - the locale to useint countFieldsToPrint(ReadablePeriod period, int stopAt, Locale locale)
period - the period to usestopAt - stop counting at this value, enter a number ≥ 256 to count alllocale - the locale to usevoid printTo(StringBuffer buf, ReadablePeriod period, Locale locale)
buf - the formatted period is appended to this bufferperiod - the period to formatlocale - the locale to useCopyright © 2013 os-cillation GmbH. All rights reserved.