toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CodeRepositorySortOrder.ascending:
      return 'Ascending';
    case CodeRepositorySortOrder.descending:
      return 'Descending';
  }
}