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

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

Introduction

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

The text is from its open source code.

Method

voidappendPaddedInteger(StringBuffer buf, int value, int size)
Converts an integer to a string, prepended with a variable amount of '0' pad characters, and appends it to the given buffer.
voidappendPaddedInteger(Appendable appenadble, int value, int size)
Converts an integer to a string, prepended with a variable amount of '0' pad characters, and appends it to the given appendable.
voidappendPaddedInteger(StringBuffer buf, long value, int size)
Converts an integer to a string, prepended with a variable amount of '0' pad characters, and appends it to the given buffer.
voidappendPaddedInteger(Appendable appendable, long value, int size)
Converts an integer to a string, prepended with a variable amount of '0' pad characters, and appends it to the given buffer.