Package dev.cel.runtime.standard
Enum LessOperator.LessOverload
- java.lang.Object
-
- java.lang.Enum<LessOperator.LessOverload>
-
- dev.cel.runtime.standard.LessOperator.LessOverload
-
- All Implemented Interfaces:
CelStandardOverload,java.io.Serializable,java.lang.Comparable<LessOperator.LessOverload>
- Enclosing class:
- LessOperator
public static enum LessOperator.LessOverload extends java.lang.Enum<LessOperator.LessOverload> implements CelStandardOverload
Overloads for the standard function.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LESS_BOOLLESS_BYTESLESS_DOUBLELESS_DOUBLE_INT64LESS_DOUBLE_UINT64LESS_DURATIONLESS_INT64LESS_INT64_DOUBLELESS_INT64_UINT64LESS_STRINGLESS_TIMESTAMPLESS_UINT64LESS_UINT64_DOUBLELESS_UINT64_INT64
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CelFunctionBindingnewFunctionBinding(dev.cel.common.CelOptions celOptions, RuntimeEquality runtimeEquality)Constructs a newCelFunctionBindingfor this CEL standard overload.static LessOperator.LessOverloadvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LessOperator.LessOverload[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LESS_BOOL
public static final LessOperator.LessOverload LESS_BOOL
-
LESS_INT64
public static final LessOperator.LessOverload LESS_INT64
-
LESS_UINT64
public static final LessOperator.LessOverload LESS_UINT64
-
LESS_BYTES
public static final LessOperator.LessOverload LESS_BYTES
-
LESS_DOUBLE
public static final LessOperator.LessOverload LESS_DOUBLE
-
LESS_DOUBLE_UINT64
public static final LessOperator.LessOverload LESS_DOUBLE_UINT64
-
LESS_INT64_UINT64
public static final LessOperator.LessOverload LESS_INT64_UINT64
-
LESS_UINT64_INT64
public static final LessOperator.LessOverload LESS_UINT64_INT64
-
LESS_INT64_DOUBLE
public static final LessOperator.LessOverload LESS_INT64_DOUBLE
-
LESS_DOUBLE_INT64
public static final LessOperator.LessOverload LESS_DOUBLE_INT64
-
LESS_UINT64_DOUBLE
public static final LessOperator.LessOverload LESS_UINT64_DOUBLE
-
LESS_DURATION
public static final LessOperator.LessOverload LESS_DURATION
-
LESS_STRING
public static final LessOperator.LessOverload LESS_STRING
-
LESS_TIMESTAMP
public static final LessOperator.LessOverload LESS_TIMESTAMP
-
-
Method Detail
-
values
public static LessOperator.LessOverload[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LessOperator.LessOverload c : LessOperator.LessOverload.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LessOperator.LessOverload valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
newFunctionBinding
public CelFunctionBinding newFunctionBinding(dev.cel.common.CelOptions celOptions, RuntimeEquality runtimeEquality)
Description copied from interface:CelStandardOverloadConstructs a newCelFunctionBindingfor this CEL standard overload.- Specified by:
newFunctionBindingin interfaceCelStandardOverload
-
-