toValue method
Implementation
String toValue() {
switch (this) {
case AttributeAction.add:
return 'ADD';
case AttributeAction.put:
return 'PUT';
case AttributeAction.delete:
return 'DELETE';
}
}
String toValue() {
switch (this) {
case AttributeAction.add:
return 'ADD';
case AttributeAction.put:
return 'PUT';
case AttributeAction.delete:
return 'DELETE';
}
}