|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.novell.xsl.number.AlphabeticNumberFormatter
A class that formats integers into an alphabetic representation. This class
corresponds to the xsl:number
format tokens a
and A
, and can be used to support other alphabetic formats.
Alphabetic number formats are characterized by their ability to use "digits" with non-sequential Unicode values and by the absence of a "digit" that represents zero.
Constructor Summary | |
AlphabeticNumberFormatter(String digits)
Constructs an alphabetic number formatter that uses the specified characters as digits. |
Method Summary | |
String |
format(int value)
Formats the specified positive integer value into an alphabetic number. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public AlphabeticNumberFormatter(String digits)
For example, the number formatter created by
new AlphabeticNumberFormatter("abcdefghijklmnopqrstuvwxyz")
corresponds to the format token a
. It generates the
sequence a b c ... z aa ab ac ...
.
Parameters:
digits
- the characters to be used as digits
Method Detail
format
public String format(int value)
throws IllegalArgumentException
- Formats the specified positive integer value into an alphabetic number.
- Specified by:
format
in interface NumberFormatter
- Parameters:
value
- the value to be formatted; must be greater than zero
- Returns:
- the formatted value
- Throws:
IllegalArgumentException
- if the value is less than or equal to zero
Overview
Package
Class
Tree
Deprecated
Index
Help
PREV CLASS
NEXT CLASS
FRAMES
NO FRAMES
All Classes
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD