Package | Description |
---|---|
com.hfg.math |
Modifier and Type | Field and Description |
---|---|
static RomanNumeralSymbol |
RomanNumeralSymbol.C
The Roman numeral for the integer 100.
|
static RomanNumeralSymbol |
RomanNumeralSymbol.D
The Roman numeral for the integer 500.
|
static RomanNumeralSymbol |
RomanNumeralSymbol.I
The Roman numeral for the integer 1.
|
static RomanNumeralSymbol |
RomanNumeralSymbol.L
The Roman numeral for the integer 50.
|
static RomanNumeralSymbol |
RomanNumeralSymbol.M
The Roman numeral for the integer 1000.
|
static RomanNumeralSymbol |
RomanNumeralSymbol.V
The Roman numeral for the integer 5.
|
static RomanNumeralSymbol |
RomanNumeralSymbol.X
The Roman numeral for the integer 10.
|
Modifier and Type | Method and Description |
---|---|
static RomanNumeralSymbol |
RomanNumeralSymbol.valueOf(char inLetter)
Returns the RomanNumeralSymbol value for the specified character.
|
static RomanNumeralSymbol[] |
RomanNumeralSymbol.values()
Returns an array of all the RomanNumeralSymbol values.
|
Modifier and Type | Method and Description |
---|---|
boolean |
RomanNumeralSymbol.canPrecede(RomanNumeralSymbol inSymbol)
Returns whether this symbol can legally precede the specified symbol given
the subtractive principle.
|
int |
RomanNumeralSymbol.compareTo(RomanNumeralSymbol inObj)
Numerically compares two RomanNumeralSymbol objects.
|
jataylor@hairyfatguy.com