op property

String? op
getter/setter pair

The unary operator to apply. Possible string values are:

  • "OPERATOR_UNSPECIFIED" : Unspecified. This value must not be used.
  • "IS_NAN" : The given field is equal to NaN.
  • "IS_NULL" : The given field is equal to NULL.
  • "IS_NOT_NAN" : The given field is not equal to NaN. Requires: * No other NOT_EQUAL, NOT_IN, IS_NOT_NULL, or IS_NOT_NAN. * That field comes first in the order_by.
  • "IS_NOT_NULL" : The given field is not equal to NULL. Requires: * A single NOT_EQUAL, NOT_IN, IS_NOT_NULL, or IS_NOT_NAN. * That field comes first in the order_by.

Implementation

core.String? op;