public enum NumericFunctionType extends Enum<NumericFunctionType>
| Enum Constant and Description |
|---|
ABS
The 'abs' function.
|
LENGTH
The length function.
|
MOD
The 'mod' function.
|
SQRT
The 'sqrt' function.
|
| Modifier and Type | Method and Description |
|---|---|
static NumericFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumericFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericFunctionType MOD
public static final NumericFunctionType ABS
public static final NumericFunctionType SQRT
public static final NumericFunctionType LENGTH
public static NumericFunctionType[] values()
for (NumericFunctionType c : NumericFunctionType.values()) System.out.println(c);
public static NumericFunctionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2012 Batoo Software & Consultancy. All Rights Reserved.