toOrcFormatVersion method
Implementation
OrcFormatVersion toOrcFormatVersion() {
switch (this) {
case 'V0_11':
return OrcFormatVersion.v0_11;
case 'V0_12':
return OrcFormatVersion.v0_12;
}
throw Exception('$this is not known in enum OrcFormatVersion');
}