toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CacheType.noCache:
      return 'NO_CACHE';
    case CacheType.s3:
      return 'S3';
    case CacheType.local:
      return 'LOCAL';
  }
}