public static enum RomanNumeralUtils.RomanNumeral extends Enum<RomanNumeralUtils.RomanNumeral>
| Modifier and Type | Method and Description |
|---|---|
static List<RomanNumeralUtils.RomanNumeral> |
getReverseSortedValues() |
int |
getValue() |
static RomanNumeralUtils.RomanNumeral |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RomanNumeralUtils.RomanNumeral[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RomanNumeralUtils.RomanNumeral I
public static final RomanNumeralUtils.RomanNumeral IV
public static final RomanNumeralUtils.RomanNumeral V
public static final RomanNumeralUtils.RomanNumeral IX
public static final RomanNumeralUtils.RomanNumeral X
public static final RomanNumeralUtils.RomanNumeral XL
public static final RomanNumeralUtils.RomanNumeral L
public static final RomanNumeralUtils.RomanNumeral XC
public static final RomanNumeralUtils.RomanNumeral C
public static final RomanNumeralUtils.RomanNumeral CD
public static final RomanNumeralUtils.RomanNumeral D
public static final RomanNumeralUtils.RomanNumeral CM
public static final RomanNumeralUtils.RomanNumeral M
public static RomanNumeralUtils.RomanNumeral[] values()
for (RomanNumeralUtils.RomanNumeral c : RomanNumeralUtils.RomanNumeral.values()) System.out.println(c);
public static RomanNumeralUtils.RomanNumeral valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
public static List<RomanNumeralUtils.RomanNumeral> getReverseSortedValues()
Copyright © 2023. All rights reserved.