toValue method

String toValue()

Implementation

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