toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case StatementType.ddl:
      return 'DDL';
    case StatementType.dml:
      return 'DML';
    case StatementType.utility:
      return 'UTILITY';
  }
}