Java org.joda.time.format PeriodFormatterBuilder fields, constructors, methods, implement or subclass

Example usage for Java org.joda.time.format PeriodFormatterBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.joda.time.format PeriodFormatterBuilder.

The text is from its open source code.

Constructor

Method

PeriodFormatterBuilderappendDays()
Instruct the printer to emit an integer days field, if supported.
PeriodFormatterBuilderappendHours()
Instruct the printer to emit an integer hours field, if supported.
PeriodFormatterBuilderappendLiteral(String text)
Instructs the printer to emit specific text, and the parser to expect it.
PeriodFormatterBuilderappendMillis()
Instruct the printer to emit an integer millis field, if supported.
PeriodFormatterBuilderappendMinutes()
Instruct the printer to emit an integer minutes field, if supported.
PeriodFormatterBuilderappendMonths()
Instruct the printer to emit an integer months field, if supported.
PeriodFormatterBuilderappendPrefix(String text)
Append a field prefix which applies only to the next appended field.
PeriodFormatterBuilderappendPrefix(PeriodFieldAffix prefix)
Append a field prefix which applies only to the next appended field.
PeriodFormatterBuilderappendSeconds()
Instruct the printer to emit an integer seconds field, if supported.
PeriodFormatterBuilderappendSecondsWithOptionalMillis()
Instruct the printer to emit a combined seconds and millis field, if supported.
PeriodFormatterBuilderappendSeparator(String text)
Append a separator, which is output if fields are printed both before and after the separator.
PeriodFormatterBuilderappendSuffix(String singularText, String pluralText)
Append a field suffix which applies only to the last appended field.
PeriodFormatterBuilderappendSuffix(String[] regularExpressions, String[] suffixes)
Append a field suffix which applies only to the last appended field.
PeriodFormatterBuilderappendWeeks()
Instruct the printer to emit an integer weeks field, if supported.
PeriodFormatterBuilderappendYears()
Instruct the printer to emit an integer years field, if supported.
PeriodFormatterBuilderminimumPrintedDigits(int minDigits)
Set the minimum digits printed for the next and following appended fields.
PeriodFormatterBuilderprintZeroAlways()
Always print zero values for the next and following appended fields, even if the period doesn't support it.
PeriodFormatterBuilderprintZeroIfSupported()
Print zero values for the next and following appended fields only if the period supports it.
PeriodFormattertoFormatter()
Constructs a PeriodFormatter using all the appended elements.
PeriodParsertoParser()
Internal method to create a PeriodParser instance using all the appended elements.
PeriodPrintertoPrinter()
Internal method to create a PeriodPrinter instance using all the appended elements.