toValue method
Implementation
String toValue() {
switch (this) {
case InventoryFormat.csv:
return 'CSV';
case InventoryFormat.orc:
return 'ORC';
case InventoryFormat.parquet:
return 'Parquet';
}
}
String toValue() {
switch (this) {
case InventoryFormat.csv:
return 'CSV';
case InventoryFormat.orc:
return 'ORC';
case InventoryFormat.parquet:
return 'Parquet';
}
}