|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NumericType>
to.etc.domui.component.meta.NumericType
public enum NumericType
Represents a toplevel specification of what a numeric value represents. It's most important use is to distinguish between things like simple numbers, monetary values, percentages etc.
Enum Constant Summary | |
---|---|
AMOUNT
This represents some monetary amount |
|
DURATION
Represents a duration. |
|
FACTOR
Represents some factor (fractional) |
|
NUMBER
It's just a number. |
|
PERCENTAGE
Represents a percentage (0..100, fractional) |
|
UNKNOWN
Not explicity defined; treated as just a number. |
Method Summary | |
---|---|
static NumericType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static NumericType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final NumericType UNKNOWN
public static final NumericType NUMBER
public static final NumericType AMOUNT
public static final NumericType DURATION
public static final NumericType PERCENTAGE
public static final NumericType FACTOR
Method Detail |
---|
public static NumericType[] values()
for (NumericType c : NumericType.values()) System.out.println(c);
public static NumericType 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |