public enum FunctionValueType extends java.lang.Enum<FunctionValueType>
| Enum Constant and Description |
|---|
Boolean |
Number |
Object
Specifies that value of parameter is scalar,
Array or CalcReference. |
Text |
Variant |
| Modifier and Type | Method and Description |
|---|---|
static FunctionValueType |
forValue(int value) |
int |
getValue() |
static FunctionValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FunctionValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionValueType Number
public static final FunctionValueType Text
public static final FunctionValueType Boolean
public static final FunctionValueType Variant
public static final FunctionValueType Object
Array or CalcReference.
If this parameter is retval or acceptCustomObjects, the value can be custom objects.public static FunctionValueType[] values()
for (FunctionValueType c : FunctionValueType.values()) System.out.println(c);
public static FunctionValueType 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 nullpublic int getValue()
public static FunctionValueType forValue(int value)