public class RomanNumberFactory extends Object
Constructor | Description |
---|---|
RomanNumberFactory() |
Modifier and Type | Method | Description |
---|---|---|
static String |
getLowerCaseString(int index) |
Changes an int into a lower case roman number.
|
static String |
getString(int index) |
Changes an int into a lower case roman number.
|
static String |
getString(int index,
boolean lowercase) |
Changes an int into a roman number.
|
static String |
getUpperCaseString(int index) |
Changes an int into an upper case roman number.
|
public static final String getString(int index)
index
- the original numberpublic static final String getLowerCaseString(int index)
index
- the original numberpublic static final String getUpperCaseString(int index)
index
- the original numberpublic static final String getString(int index, boolean lowercase)
index
- the original numberlowercase
- true for lowercase, false otherwiseCopyright © 2018. All rights reserved.