toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case LicenseConfigurationStatus.available:
      return 'AVAILABLE';
    case LicenseConfigurationStatus.disabled:
      return 'DISABLED';
  }
}