toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case BundleType.tar:
      return 'tar';
    case BundleType.tgz:
      return 'tgz';
    case BundleType.zip:
      return 'zip';
    case BundleType.yaml:
      return 'YAML';
    case BundleType.json:
      return 'JSON';
  }
}