public static enum FunctionExpressionFactory.ParameterCount extends java.lang.Enum<FunctionExpressionFactory.ParameterCount>
FunctionExpression can have.| Enum Constant and Description | 
|---|
ONE
Only one parameter is allowed. 
 | 
ONE_OR_MANY
[1, n] are allowed. 
 | 
ZERO
No parameters are allowed. 
 | 
ZERO_OR_MANY
[0, n] are allowed. 
 | 
ZERO_OR_ONE
[0, 1] are allowed. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static FunctionExpressionFactory.ParameterCount | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static FunctionExpressionFactory.ParameterCount[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final FunctionExpressionFactory.ParameterCount ONE
public static final FunctionExpressionFactory.ParameterCount ONE_OR_MANY
public static final FunctionExpressionFactory.ParameterCount ZERO
public static final FunctionExpressionFactory.ParameterCount ZERO_OR_MANY
public static final FunctionExpressionFactory.ParameterCount ZERO_OR_ONE
public static FunctionExpressionFactory.ParameterCount[] values()
for (FunctionExpressionFactory.ParameterCount c : FunctionExpressionFactory.ParameterCount.values()) System.out.println(c);
public static FunctionExpressionFactory.ParameterCount 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