toValue method
Implementation
String toValue() {
switch (this) {
case DocumentFormat.yaml:
return 'YAML';
case DocumentFormat.json:
return 'JSON';
case DocumentFormat.text:
return 'TEXT';
}
}
String toValue() {
switch (this) {
case DocumentFormat.yaml:
return 'YAML';
case DocumentFormat.json:
return 'JSON';
case DocumentFormat.text:
return 'TEXT';
}
}