public class Numberer_en extends Object implements Numberer, Serializable
Modifier and Type | Field and Description |
---|---|
protected static String |
cyrillicLower |
protected static String |
cyrillicUpper |
protected static String |
greekLower |
protected static String |
greekUpper |
protected static String |
hebrew |
protected static String |
hiraganaA |
protected static String |
hiraganaI |
protected static String |
kanjiDigits |
protected static String |
katakanaA |
protected static String |
katakanaI |
protected static String |
latinLower |
protected static String |
latinUpper |
static int |
LOWER_CASE |
(package private) static HashMap |
timezones |
static int |
TITLE_CASE |
static int |
UPPER_CASE |
protected static String |
westernDigits |
Constructor and Description |
---|
Numberer_en() |
Modifier and Type | Method and Description |
---|---|
protected void |
alphaDefault(long number,
char formchar,
FastStringBuffer sb)
Default processing with an alphabetic format token: use the contiguous
range of Unicode letters starting with that token.
|
String |
dayName(int day,
int minWidth,
int maxWidth)
Get a day name or abbreviation
|
String |
format(long number,
String picture,
int groupSize,
String groupSeparator,
String letterValue,
String ordinal)
Format a number into a string
|
String |
getEraName(int year)
Get the name for an era (e.g.
|
String |
getOrdinalSuffixForDateTime(String component)
Get an ordinal suffix for a particular component of a date/time.
|
String |
getTimezoneName(int tz)
Get the name of a timezone
|
String |
halfDayName(int minutes,
int minWidth,
int maxWidth)
Get an am/pm indicator
|
String |
monthName(int month,
int minWidth,
int maxWidth)
Get a month name or abbreviation
|
protected String |
ordinalSuffix(String ordinalParam,
long number)
Construct the ordinal suffix for a number, for example "st", "nd", "rd"
|
void |
setCountry(String country)
Set the country used by this numberer (currenly used only for names of timezones)
|
protected String |
toAlpha(long number,
int min,
int max)
Format the number as an alphabetic label using the alphabet consisting
of consecutive Unicode characters from min to max
|
protected String |
toAlphaSequence(long number,
String alphabet)
Convert the number into an alphabetic label using a given alphabet.
|
String |
toOrdinalWords(String ordinalParam,
long number,
int wordCase)
Show an ordinal number as English words in a requested case (for example, Twentyfirst)
|
static String |
toRoman(long n)
Generate a Roman numeral (in lower case)
|
String |
toWords(long number)
Show the number as words in title case.
|
String |
toWords(long number,
int wordCase) |
(package private) static void |
tz(double offset,
String name,
String country) |
public static final int UPPER_CASE
public static final int LOWER_CASE
public static final int TITLE_CASE
protected static final String westernDigits
protected static final String latinUpper
protected static final String latinLower
protected static final String greekUpper
protected static final String greekLower
protected static final String cyrillicUpper
protected static final String cyrillicLower
protected static final String hebrew
protected static final String hiraganaA
protected static final String katakanaA
protected static final String hiraganaI
protected static final String katakanaI
protected static final String kanjiDigits
static HashMap timezones
public void setCountry(String country)
setCountry
in interface Numberer
public String format(long number, String picture, int groupSize, String groupSeparator, String letterValue, String ordinal)
format
in interface Numberer
number
- The number to be formattedpicture
- The format token. This is a single component of the format attribute
of xsl:number, e.g. "1", "01", "i", or "a"groupSize
- number of digits per group (0 implies no grouping)groupSeparator
- string to appear between groups of digitsletterValue
- The letter-value specified to xsl:number: "alphabetic" or
"traditional". Can also be an empty string or null.ordinal
- The value of the ordinal attribute specified to xsl:number
The value "yes" indicates that ordinal numbers should be used; "" or null indicates
that cardinal numbersprotected String ordinalSuffix(String ordinalParam, long number)
ordinalParam
- the value of the ordinal attribute (used in non-English
language implementations)number
- the number being formattedprotected void alphaDefault(long number, char formchar, FastStringBuffer sb)
protected String toAlpha(long number, int min, int max)
protected String toAlphaSequence(long number, String alphabet)
public static String toRoman(long n)
public String toWords(long number)
public String toWords(long number, int wordCase)
public String toOrdinalWords(String ordinalParam, long number, int wordCase)
public String monthName(int month, int minWidth, int maxWidth)
public String dayName(int day, int minWidth, int maxWidth)
public String halfDayName(int minutes, int minWidth, int maxWidth)
halfDayName
in interface Numberer
minutes
- the minutes within the dayminWidth
- minimum width of outputmaxWidth
- maximum width of outputpublic String getOrdinalSuffixForDateTime(String component)
getOrdinalSuffixForDateTime
in interface Numberer
component
- the component specifier from a format-dateTime picture, for
example "M" for the month or "D" for the day.public String getEraName(int year)
getEraName
in interface Numberer
year
- the proleptic gregorian year, using "0" for the year before 1ADpublic String getTimezoneName(int tz)
getTimezoneName
in interface Numberer
tz
- the offset of the timezone from GMT in minutes