public class RomanAlphabetFactory
extends java.lang.Object
Constructor and Description |
---|
RomanAlphabetFactory() |
Modifier and Type | Method and Description |
---|---|
static java.lang.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,...
|
static java.lang.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,...
|
static java.lang.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,...).
|
static java.lang.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 final java.lang.String getString(int index)
index
- the indexpublic static final java.lang.String getLowerCaseString(int index)
index
- the int to translatepublic static final java.lang.String getUpperCaseString(int index)
index
- the int to translatepublic static final java.lang.String getString(int index, boolean lowercase)
index
- the int to translatelowercase
- true if the string sshould be lowercase false otherwiseCopyright © 2013. All Rights Reserved.