public enum RoundingTypeId extends java.lang.Enum<RoundingTypeId>
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static RoundingTypeId |
valueOf(int intValue) |
static RoundingTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RoundingTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoundingTypeId None
public static final RoundingTypeId Nearest
public static final RoundingTypeId Up
public static final RoundingTypeId Down
public static RoundingTypeId[] values()
for (RoundingTypeId c : RoundingTypeId.values()) System.out.println(c);
public static RoundingTypeId valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static RoundingTypeId valueOf(int intValue)
public int getValue()