toValue method

String toValue()

Implementation

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