toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ProcessBehavior.save:
      return 'SAVE';
    case ProcessBehavior.build:
      return 'BUILD';
  }
}