Interface Messages.RefactorRequestOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Messages.RefactorRequest, Messages.RefactorRequest.Builder
Enclosing class:
Messages

public static interface Messages.RefactorRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • hasOldStepValue

      boolean hasOldStepValue()
       / Old value, used to lookup Step to refactor
       
      .gauge.messages.ProtoStepValue oldStepValue = 1;
      Returns:
      Whether the oldStepValue field is set.
    • getOldStepValue

      Spec.ProtoStepValue getOldStepValue()
       / Old value, used to lookup Step to refactor
       
      .gauge.messages.ProtoStepValue oldStepValue = 1;
      Returns:
      The oldStepValue.
    • getOldStepValueOrBuilder

      Spec.ProtoStepValueOrBuilder getOldStepValueOrBuilder()
       / Old value, used to lookup Step to refactor
       
      .gauge.messages.ProtoStepValue oldStepValue = 1;
    • hasNewStepValue

      boolean hasNewStepValue()
       / New value, the to-be value of Step being refactored.
       
      .gauge.messages.ProtoStepValue newStepValue = 2;
      Returns:
      Whether the newStepValue field is set.
    • getNewStepValue

      Spec.ProtoStepValue getNewStepValue()
       / New value, the to-be value of Step being refactored.
       
      .gauge.messages.ProtoStepValue newStepValue = 2;
      Returns:
      The newStepValue.
    • getNewStepValueOrBuilder

      Spec.ProtoStepValueOrBuilder getNewStepValueOrBuilder()
       / New value, the to-be value of Step being refactored.
       
      .gauge.messages.ProtoStepValue newStepValue = 2;
    • getParamPositionsList

      List<Messages.ParameterPosition> getParamPositionsList()
       / Holds parameter positions of all parameters. Contains old and new parameter positions.
       
      repeated .gauge.messages.ParameterPosition paramPositions = 3;
    • getParamPositions

      Messages.ParameterPosition getParamPositions(int index)
       / Holds parameter positions of all parameters. Contains old and new parameter positions.
       
      repeated .gauge.messages.ParameterPosition paramPositions = 3;
    • getParamPositionsCount

      int getParamPositionsCount()
       / Holds parameter positions of all parameters. Contains old and new parameter positions.
       
      repeated .gauge.messages.ParameterPosition paramPositions = 3;
    • getParamPositionsOrBuilderList

      List<? extends Messages.ParameterPositionOrBuilder> getParamPositionsOrBuilderList()
       / Holds parameter positions of all parameters. Contains old and new parameter positions.
       
      repeated .gauge.messages.ParameterPosition paramPositions = 3;
    • getParamPositionsOrBuilder

      Messages.ParameterPositionOrBuilder getParamPositionsOrBuilder(int index)
       / Holds parameter positions of all parameters. Contains old and new parameter positions.
       
      repeated .gauge.messages.ParameterPosition paramPositions = 3;
    • getSaveChanges

      boolean getSaveChanges()
       / If set to true, the refactored files should be saved to the file system before returning the response.
       
      bool saveChanges = 4;
      Returns:
      The saveChanges.