ConditionOp

enum ConditionOp : Enum<ConditionOp> , ConvertibleToJava<ConditionOp>

An operator to apply the subject with.

Entries

Link copied to clipboard

Default no-op.

Link copied to clipboard

DEPRECATED. Use IN instead.

Link copied to clipboard

DEPRECATED. Use NOT_IN instead.

Link copied to clipboard

The condition is true if the subject (or any element of it if it is a set) matches any of the supplied values.

Link copied to clipboard

The condition is true if the subject (or every element of it if it is a set) matches none of the supplied values.

Link copied to clipboard

Subject is discharged

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toJava(): ConditionOp
Link copied to clipboard

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.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
val javaValue: ConditionOp
Link copied to clipboard
Link copied to clipboard