toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case DimensionValueOperator.$in:
      return 'IN';
    case DimensionValueOperator.notIn:
      return 'NOT_IN';
  }
}