public class DecimalToRoman extends Object
Modifier and Type | Field and Description |
---|---|
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
|
Constructor and Description |
---|
DecimalToRoman(long postValue,
String postLetter,
long preValue,
String preLetter)
Constructor DecimalToRoman
|
public long m_postValue
public String m_postLetter
public long m_preValue
public String m_preLetter
public DecimalToRoman(long postValue, String postLetter, long preValue, String preLetter)
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 preValueCopyright © 2017 JBoss by Red Hat. All rights reserved.