toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case BooleanOperator.and:
      return 'And';
    case BooleanOperator.or:
      return 'Or';
  }
}