toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CodeSigningPolicy.warn:
      return 'Warn';
    case CodeSigningPolicy.enforce:
      return 'Enforce';
  }
}