toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case LicenseType.aws:
      return 'AWS';
    case LicenseType.byol:
      return 'BYOL';
  }
}