toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case FeatureGroupStatus.creating:
      return 'Creating';
    case FeatureGroupStatus.created:
      return 'Created';
    case FeatureGroupStatus.createFailed:
      return 'CreateFailed';
    case FeatureGroupStatus.deleting:
      return 'Deleting';
    case FeatureGroupStatus.deleteFailed:
      return 'DeleteFailed';
  }
}