toTransformStatusType method

TransformStatusType toTransformStatusType()

Implementation

TransformStatusType toTransformStatusType() {
  switch (this) {
    case 'NOT_READY':
      return TransformStatusType.notReady;
    case 'READY':
      return TransformStatusType.ready;
    case 'DELETING':
      return TransformStatusType.deleting;
  }
  throw Exception('$this is not known in enum TransformStatusType');
}