toValue method
Implementation
String toValue() {
switch (this) {
case ConnectionAliasState.creating:
return 'CREATING';
case ConnectionAliasState.created:
return 'CREATED';
case ConnectionAliasState.deleting:
return 'DELETING';
}
}