toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Replacement.$true:
      return 'TRUE';
    case Replacement.$false:
      return 'FALSE';
    case Replacement.conditional:
      return 'CONDITIONAL';
  }
}