toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ImageSortBy.creationTime:
      return 'CREATION_TIME';
    case ImageSortBy.lastModifiedTime:
      return 'LAST_MODIFIED_TIME';
    case ImageSortBy.imageName:
      return 'IMAGE_NAME';
  }
}