toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AdvancedSecurityModeType.off:
      return 'OFF';
    case AdvancedSecurityModeType.audit:
      return 'AUDIT';
    case AdvancedSecurityModeType.enforced:
      return 'ENFORCED';
  }
}