public static enum RMProperty.NumberType extends java.lang.Enum<RMProperty.NumberType>
Enum Constant and Description |
---|
Byte |
Decimal |
Double |
Float |
Integer |
Long |
Short |
Modifier and Type | Method and Description |
---|---|
static RMProperty.NumberType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RMProperty.NumberType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RMProperty.NumberType Byte
public static final RMProperty.NumberType Short
public static final RMProperty.NumberType Integer
public static final RMProperty.NumberType Long
public static final RMProperty.NumberType Float
public static final RMProperty.NumberType Double
public static final RMProperty.NumberType Decimal
public static RMProperty.NumberType[] values()
for (RMProperty.NumberType c : RMProperty.NumberType.values()) System.out.println(c);
public static RMProperty.NumberType 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 null