toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case SortOrder.ascending:
      return 'ASCENDING';
    case SortOrder.descending:
      return 'DESCENDING';
  }
}