toValue method
Implementation
String toValue() {
switch (this) {
case OrcCompression.none:
return 'NONE';
case OrcCompression.zlib:
return 'ZLIB';
case OrcCompression.snappy:
return 'SNAPPY';
}
}
String toValue() {
switch (this) {
case OrcCompression.none:
return 'NONE';
case OrcCompression.zlib:
return 'ZLIB';
case OrcCompression.snappy:
return 'SNAPPY';
}
}