toValue method
Implementation
String toValue() {
switch (this) {
case InstanceRoleType.master:
return 'MASTER';
case InstanceRoleType.core:
return 'CORE';
case InstanceRoleType.task:
return 'TASK';
}
}
String toValue() {
switch (this) {
case InstanceRoleType.master:
return 'MASTER';
case InstanceRoleType.core:
return 'CORE';
case InstanceRoleType.task:
return 'TASK';
}
}