toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case InstancePatchStateOperatorType.equal:
      return 'Equal';
    case InstancePatchStateOperatorType.notEqual:
      return 'NotEqual';
    case InstancePatchStateOperatorType.lessThan:
      return 'LessThan';
    case InstancePatchStateOperatorType.greaterThan:
      return 'GreaterThan';
  }
}