toQueryIdentifiersEnclosingOption method
Implementation
QueryIdentifiersEnclosingOption toQueryIdentifiersEnclosingOption() {
switch (this) {
case 'DOUBLE_QUOTES':
return QueryIdentifiersEnclosingOption.doubleQuotes;
case 'NONE':
return QueryIdentifiersEnclosingOption.none;
}
throw Exception(
'$this is not known in enum QueryIdentifiersEnclosingOption');
}