public class FormatUtils extends Object
FormatUtils is thread-safe and immutable.
Modifier and Type | Method and Description |
---|---|
static void |
appendPaddedInteger(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.
|
static void |
appendPaddedInteger(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.
|
static void |
appendPaddedInteger(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.
|
static void |
appendPaddedInteger(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.
|
static void |
appendUnpaddedInteger(Appendable appendable,
int value)
Converts an integer to a string, and appends it to the given appendable.
|
static void |
appendUnpaddedInteger(Appendable appendable,
long value)
Converts an integer to a string, and appends it to the given appendable.
|
static void |
appendUnpaddedInteger(StringBuffer buf,
int value)
Converts an integer to a string, and appends it to the given buffer.
|
static void |
appendUnpaddedInteger(StringBuffer buf,
long value)
Converts an integer to a string, and appends it to the given buffer.
|
static int |
calculateDigitCount(long value)
Calculates the number of decimal digits for the given value,
including the sign.
|
static void |
writePaddedInteger(Writer out,
int value,
int size)
Converts an integer to a string, prepended with a variable amount of '0'
pad characters, and writes it to the given writer.
|
static void |
writePaddedInteger(Writer out,
long value,
int size)
Converts an integer to a string, prepended with a variable amount of '0'
pad characters, and writes it to the given writer.
|
static void |
writeUnpaddedInteger(Writer out,
int value)
Converts an integer to a string, and writes it to the given writer.
|
static void |
writeUnpaddedInteger(Writer out,
long value)
Converts an integer to a string, and writes it to the given writer.
|
public static void appendPaddedInteger(StringBuffer buf, int value, int size)
This method is optimized for converting small values to strings.
buf
- receives integer converted to a stringvalue
- value to convert to a stringsize
- minimum amount of digits to appendpublic static void appendPaddedInteger(Appendable appenadble, int value, int size) throws IOException
This method is optimized for converting small values to strings.
appenadble
- receives integer converted to a stringvalue
- value to convert to a stringsize
- minimum amount of digits to appendIOException
- if an IO error occurspublic static void appendPaddedInteger(StringBuffer buf, long value, int size)
This method is optimized for converting small values to strings.
buf
- receives integer converted to a stringvalue
- value to convert to a stringsize
- minimum amount of digits to appendpublic static void appendPaddedInteger(Appendable appendable, long value, int size) throws IOException
This method is optimized for converting small values to strings.
appendable
- receives integer converted to a stringvalue
- value to convert to a stringsize
- minimum amount of digits to appendIOException
- if an IO error occurspublic static void writePaddedInteger(Writer out, int value, int size) throws IOException
This method is optimized for converting small values to strings.
out
- receives integer converted to a stringvalue
- value to convert to a stringsize
- minimum amount of digits to appendIOException
- if an IO error occurspublic static void writePaddedInteger(Writer out, long value, int size) throws IOException
This method is optimized for converting small values to strings.
out
- receives integer converted to a stringvalue
- value to convert to a stringsize
- minimum amount of digits to appendIOException
- if an IO error occurspublic static void appendUnpaddedInteger(StringBuffer buf, int value)
This method is optimized for converting small values to strings.
buf
- receives integer converted to a stringvalue
- value to convert to a stringpublic static void appendUnpaddedInteger(Appendable appendable, int value) throws IOException
This method is optimized for converting small values to strings.
appendable
- receives integer converted to a stringvalue
- value to convert to a stringIOException
- if an IO error occurspublic static void appendUnpaddedInteger(StringBuffer buf, long value)
This method is optimized for converting small values to strings.
buf
- receives integer converted to a stringvalue
- value to convert to a stringpublic static void appendUnpaddedInteger(Appendable appendable, long value) throws IOException
This method is optimized for converting small values to strings.
appendable
- receives integer converted to a stringvalue
- value to convert to a stringIOException
- if an IO error occurspublic static void writeUnpaddedInteger(Writer out, int value) throws IOException
This method is optimized for converting small values to strings.
out
- receives integer converted to a stringvalue
- value to convert to a stringIOException
- if an IO error occurspublic static void writeUnpaddedInteger(Writer out, long value) throws IOException
This method is optimized for converting small values to strings.
out
- receives integer converted to a stringvalue
- value to convert to a stringIOException
- if an IO error occurspublic static int calculateDigitCount(long value)
value
- the valueCopyright © 2002–2025 Joda.org. All rights reserved.