| java.lang.Object com.lowagie.text.factories.RomanAlphabetFactory
RomanAlphabetFactory | public class RomanAlphabetFactory (Code) | | This class can produce String combinations representing a number.
"a" to "z" represent 1 to 26, "AA" represents 27, "AB" represents 28,
and so on; "ZZ" is followed by "AAA".
|
Method Summary | |
final public static String | getLowerCaseString(int index) Translates a positive integer (not equal to zero)
into a String using the letters 'a' to 'z';
1 = a, 2 = b, ..., 26 = z, 27 = aa, 28 = ab,... | final public static String | getString(int index) Translates a positive integer (not equal to zero)
into a String using the letters 'a' to 'z';
1 = a, 2 = b, ..., 26 = z, 27 = aa, 28 = ab,... | final public static String | getString(int index, boolean lowercase) Translates a positive integer (not equal to zero)
into a String using the letters 'a' to 'z'
(a = 1, b = 2, ..., z = 26, aa = 27, ab = 28,...). | final public static String | getUpperCaseString(int index) Translates a positive integer (not equal to zero)
into a String using the letters 'A' to 'Z';
1 = A, 2 = B, ..., 26 = Z, 27 = AA, 28 = AB,... | public static void | main(String[] args) Test this class using this main method. |
getLowerCaseString | final public static String getLowerCaseString(int index)(Code) | | Translates a positive integer (not equal to zero)
into a String using the letters 'a' to 'z';
1 = a, 2 = b, ..., 26 = z, 27 = aa, 28 = ab,...
|
getString | final public static String getString(int index)(Code) | | Translates a positive integer (not equal to zero)
into a String using the letters 'a' to 'z';
1 = a, 2 = b, ..., 26 = z, 27 = aa, 28 = ab,...
|
getString | final public static String getString(int index, boolean lowercase)(Code) | | Translates a positive integer (not equal to zero)
into a String using the letters 'a' to 'z'
(a = 1, b = 2, ..., z = 26, aa = 27, ab = 28,...).
|
getUpperCaseString | final public static String getUpperCaseString(int index)(Code) | | Translates a positive integer (not equal to zero)
into a String using the letters 'A' to 'Z';
1 = A, 2 = B, ..., 26 = Z, 27 = AA, 28 = AB,...
|
main | public static void main(String[] args)(Code) | | Test this class using this main method.
|
|
|