toValue method
Implementation
String toValue() {
switch (this) {
case AthenaResultCompressionType.gzip:
return 'GZIP';
case AthenaResultCompressionType.snappy:
return 'SNAPPY';
case AthenaResultCompressionType.zlib:
return 'ZLIB';
}
}