Interface Messages.ExecuteStepRequestOrBuilder

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

public static interface Messages.ExecuteStepRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    / Contains the actual text of the Step being executed
    com.google.protobuf.ByteString
    / Contains the actual text of the Step being executed
    getParameters(int index)
    / Collection of parameters applicable to the current Step.
    int
    / Collection of parameters applicable to the current Step.
    / Collection of parameters applicable to the current Step.
    / Collection of parameters applicable to the current Step.
    / Collection of parameters applicable to the current Step.
    / Contains the parsed text of the Step being executed
    com.google.protobuf.ByteString
    / Contains the parsed text of the Step being executed
    boolean
    / Flag to indicate if the execution of the Scenario, containing the current Step, failed.
    int
    int32 stream = 5;

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getActualStepText

      String getActualStepText()
       / Contains the actual text of the Step being executed.
       / This contains the parameters as defined in the Spec.
       
      string actualStepText = 1;
      Returns:
      The actualStepText.
    • getActualStepTextBytes

      com.google.protobuf.ByteString getActualStepTextBytes()
       / Contains the actual text of the Step being executed.
       / This contains the parameters as defined in the Spec.
       
      string actualStepText = 1;
      Returns:
      The bytes for actualStepText.
    • getParsedStepText

      String getParsedStepText()
       / Contains the parsed text of the Step being executed.
       / The paramters are replaced with placeholders.
       
      string parsedStepText = 2;
      Returns:
      The parsedStepText.
    • getParsedStepTextBytes

      com.google.protobuf.ByteString getParsedStepTextBytes()
       / Contains the parsed text of the Step being executed.
       / The paramters are replaced with placeholders.
       
      string parsedStepText = 2;
      Returns:
      The bytes for parsedStepText.
    • getScenarioFailing

      boolean getScenarioFailing()
       / Flag to indicate if the execution of the Scenario, containing the current Step, failed.
       
      bool scenarioFailing = 3;
      Returns:
      The scenarioFailing.
    • getParametersList

      List<Spec.Parameter> getParametersList()
       / Collection of parameters applicable to the current Step.
       
      repeated .gauge.messages.Parameter parameters = 4;
    • getParameters

      Spec.Parameter getParameters(int index)
       / Collection of parameters applicable to the current Step.
       
      repeated .gauge.messages.Parameter parameters = 4;
    • getParametersCount

      int getParametersCount()
       / Collection of parameters applicable to the current Step.
       
      repeated .gauge.messages.Parameter parameters = 4;
    • getParametersOrBuilderList

      List<? extends Spec.ParameterOrBuilder> getParametersOrBuilderList()
       / Collection of parameters applicable to the current Step.
       
      repeated .gauge.messages.Parameter parameters = 4;
    • getParametersOrBuilder

      Spec.ParameterOrBuilder getParametersOrBuilder(int index)
       / Collection of parameters applicable to the current Step.
       
      repeated .gauge.messages.Parameter parameters = 4;
    • getStream

      int getStream()
      int32 stream = 5;
      Returns:
      The stream.