toCacheClusterStatus method

CacheClusterStatus toCacheClusterStatus()

Implementation

CacheClusterStatus toCacheClusterStatus() {
  switch (this) {
    case 'CREATE_IN_PROGRESS':
      return CacheClusterStatus.createInProgress;
    case 'AVAILABLE':
      return CacheClusterStatus.available;
    case 'DELETE_IN_PROGRESS':
      return CacheClusterStatus.deleteInProgress;
    case 'NOT_AVAILABLE':
      return CacheClusterStatus.notAvailable;
    case 'FLUSH_IN_PROGRESS':
      return CacheClusterStatus.flushInProgress;
  }
  throw Exception('$this is not known in enum CacheClusterStatus');
}