toArtifactNamespace method

ArtifactNamespace toArtifactNamespace()

Implementation

ArtifactNamespace toArtifactNamespace() {
  switch (this) {
    case 'NONE':
      return ArtifactNamespace.none;
    case 'BUILD_ID':
      return ArtifactNamespace.buildId;
  }
  throw Exception('$this is not known in enum ArtifactNamespace');
}