toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case OpsFilterOperatorType.equal:
      return 'Equal';
    case OpsFilterOperatorType.notEqual:
      return 'NotEqual';
    case OpsFilterOperatorType.beginWith:
      return 'BeginWith';
    case OpsFilterOperatorType.lessThan:
      return 'LessThan';
    case OpsFilterOperatorType.greaterThan:
      return 'GreaterThan';
    case OpsFilterOperatorType.exists:
      return 'Exists';
  }
}