toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ConfigurationSyncStatus.inSync:
      return 'InSync';
    case ConfigurationSyncStatus.outOfSync:
      return 'OutOfSync';
  }
}