toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AccessStatus.enabled:
      return 'ENABLED';
    case AccessStatus.underChange:
      return 'UNDER_CHANGE';
    case AccessStatus.disabled:
      return 'DISABLED';
  }
}