toValue method
Implementation
String toValue() {
switch (this) {
case Select.allAttributes:
return 'ALL_ATTRIBUTES';
case Select.allProjectedAttributes:
return 'ALL_PROJECTED_ATTRIBUTES';
case Select.specificAttributes:
return 'SPECIFIC_ATTRIBUTES';
case Select.count:
return 'COUNT';
}
}