com.lowagie.text
public class RomanList extends List
| Nested Class Summary | |
|---|---|
| static class | RomanList.RomanDigit
Helper class for Roman Digits |
| Field Summary | |
|---|---|
| static RomanList.RomanDigit[] | roman
Array with Roman digits. |
| Constructor Summary | |
|---|---|
| RomanList()
Initialization | |
| RomanList(int symbolIndent)
Initialization
| |
| RomanList(boolean romanlower, int symbolIndent)
Initialization | |
| Method Summary | |
|---|---|
| boolean | add(Object o)
Adds an Object to the List.
|
| boolean | isRomanLower()
Checks if the list is roman-letter with lowercase
|
| void | setRomanLower(boolean romanlower)
set the roman-letters to lowercase otherwise to uppercase
|
| static String | toRoman(int number)
changes an int into a lower case roman number. |
| static String | toRomanLowerCase(int number)
Changes an int into a lower case roman number. |
| static String | toRomanUpperCase(int number)
Changes an int into an upper case roman number. |
Parameters: symbolIndent indent
Parameters: romanlower roman-char in lowercase symbolIndent indent
Object to the List.
Parameters: o the object to add.
Returns: true if adding the object succeeded
Returns: true if the roman-letter is lowercase, false otherwise.
Parameters: romanlower
Parameters: number the original number
Returns: the roman number (lower case)
Parameters: number the original number
Returns: the roman number (lower case)
Parameters: number the original number
Returns: the roman number (upper case)