toValue method
Implementation
String toValue() {
switch (this) {
case CharLengthSemantics.$default:
return 'default';
case CharLengthSemantics.char:
return 'char';
case CharLengthSemantics.byte:
return 'byte';
}
}
String toValue() {
switch (this) {
case CharLengthSemantics.$default:
return 'default';
case CharLengthSemantics.char:
return 'char';
case CharLengthSemantics.byte:
return 'byte';
}
}