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