toValue method
Implementation
String toValue() {
switch (this) {
case DeploymentType.inPlace:
return 'IN_PLACE';
case DeploymentType.blueGreen:
return 'BLUE_GREEN';
}
}
String toValue() {
switch (this) {
case DeploymentType.inPlace:
return 'IN_PLACE';
case DeploymentType.blueGreen:
return 'BLUE_GREEN';
}
}