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