public enum EPLExpressionParamType extends Enum<EPLExpressionParamType>
Enum Constant and Description |
---|
ANY
Any value, ie.
|
BOOLEAN
Boolean-type parameter.
|
DATETIME
Date-time value.
|
NUMERIC
Any numeric value.
|
SPECIFIC
A specific class as indicated by a separate Class
|
TIME_PERIOD_OR_SEC
Time-period or number of seconds
|
Modifier and Type | Method and Description |
---|---|
Class |
getMethodParamType() |
static EPLExpressionParamType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EPLExpressionParamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPLExpressionParamType BOOLEAN
public static final EPLExpressionParamType NUMERIC
public static final EPLExpressionParamType ANY
public static final EPLExpressionParamType SPECIFIC
public static final EPLExpressionParamType TIME_PERIOD_OR_SEC
public static final EPLExpressionParamType DATETIME
public static EPLExpressionParamType[] values()
for (EPLExpressionParamType c : EPLExpressionParamType.values()) System.out.println(c);
public static EPLExpressionParamType 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 nullpublic Class getMethodParamType()
Copyright © 2005–2019. All rights reserved.