com.lowagie.text

Class RomanList

public class RomanList extends List

A special-version of LIST which use roman-letters.

See Also: List

Constructor Summary
RomanList()
Initialization
RomanList(int symbolIndent)
Initialization
RomanList(boolean lowercase, int symbolIndent)
Initialization
Method Summary
booleanadd(Object o)
Adds an Object to the List.
booleanisRomanLower()
Checks if the list is roman-letter with lowercase
voidsetRomanLower(boolean romanlower)
set the roman-letters to lowercase otherwise to uppercase
static StringtoRoman(int number)
static StringtoRomanLowerCase(int number)
static StringtoRomanUpperCase(int number)

Constructor Detail

RomanList

public RomanList()
Initialization

RomanList

public RomanList(int symbolIndent)
Initialization

Parameters: symbolIndent indent

RomanList

public RomanList(boolean lowercase, int symbolIndent)
Initialization

Parameters: lowercase roman-char in lowercase symbolIndent indent

Method Detail

add

public boolean add(Object o)
Adds an Object to the List.

Parameters: o the object to add.

Returns: true if adding the object succeeded

isRomanLower

public boolean isRomanLower()

Deprecated: use isLowercase()

Checks if the list is roman-letter with lowercase

Returns: true if the roman-letter is lowercase, false otherwise.

setRomanLower

public void setRomanLower(boolean romanlower)

Deprecated: use setLowercase(boolean)

set the roman-letters to lowercase otherwise to uppercase

Parameters: romanlower

toRoman

public static String toRoman(int number)

Deprecated: use RomanNumberFactory.getString(int)

toRomanLowerCase

public static String toRomanLowerCase(int number)

Deprecated: use RomanNumberFactory.getString(int, boolean)

toRomanUpperCase

public static String toRomanUpperCase(int number)

Deprecated: use RomanNumberFactory.getString(int, boolean)