toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ReplicationRunType.onDemand:
      return 'ON_DEMAND';
    case ReplicationRunType.automatic:
      return 'AUTOMATIC';
  }
}