org.apache.xalan.transformer
Class DecimalToRoman
java.lang.Object
org.apache.xalan.transformer.DecimalToRoman
public class DecimalToRoman
extends java.lang.Object
Structure to help in converting integers to roman numerals
String | m_postLetter - Correspoding letter (roman) to m_postValue
|
long | m_postValue - Minimum value for a given range of roman numbers
|
String | m_preLetter - Correspoding letter (roman) to m_preValue
|
long | m_preValue - Value of last prefixed number within that same range
|
DecimalToRoman(long postValue, String postLetter, long preValue, String preLetter) - Constructor DecimalToRoman
|
m_postLetter
public String m_postLetter
Correspoding letter (roman) to m_postValue
m_postValue
public long m_postValue
Minimum value for a given range of roman numbers
m_preLetter
public String m_preLetter
Correspoding letter (roman) to m_preValue
m_preValue
public long m_preValue
Value of last prefixed number within that same range
DecimalToRoman
public DecimalToRoman(long postValue,
String postLetter,
long preValue,
String preLetter)
Constructor DecimalToRoman
postValue
- Minimum value for a given range of
roman numberspostLetter
- Correspoding letter (roman) to postValuepreValue
- Value of last prefixed number within
that same range (i.e. IV if postval is 5 (V))preLetter
- Correspoding letter(roman) to preValue
Copyright B) 2005 Apache XML Project. All Rights Reserved.