public static enum Numbers.Category extends java.lang.Enum<Numbers.Category>
Modifier and Type | Method and Description |
---|---|
static Numbers.Category |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Numbers.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Numbers.Category INTEGER
public static final Numbers.Category FLOATING
public static final Numbers.Category DECIMAL
public static final Numbers.Category RATIO
public static Numbers.Category[] values()
for (Numbers.Category c : Numbers.Category.values()) System.out.println(c);
public static Numbers.Category 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