toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case DirectInternetAccess.enabled:
      return 'Enabled';
    case DirectInternetAccess.disabled:
      return 'Disabled';
  }
}