toArtifactNamespace method
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');
}