toSortArtifactsBy method

SortArtifactsBy toSortArtifactsBy()

Implementation

SortArtifactsBy toSortArtifactsBy() {
  switch (this) {
    case 'CreationTime':
      return SortArtifactsBy.creationTime;
  }
  throw Exception('$this is not known in enum SortArtifactsBy');
}