toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case HasLogicalRedundancy.unknown:
      return 'unknown';
    case HasLogicalRedundancy.yes:
      return 'yes';
    case HasLogicalRedundancy.no:
      return 'no';
  }
}