Class BoundaryExtractorWrapper

    • Method Detail

      • getGuiClass

        public java.lang.Class<?> getGuiClass()
        Description copied from interface: JMeterGUIWrapper
        Gui Test Class used by Jmeter TestElement.GUI_CLASS @See TestElement
        Specified by:
        getGuiClass in interface JMeterGUIWrapper<org.apache.jmeter.extractor.gui.BoundaryExtractorGui>
      • getTestClass

        public java.lang.Class<?> getTestClass()
        Description copied from interface: TestElementWrapper
        Test Class used by Jmeter TestElement.TEST_CLASS. @See TestElement.
        Specified by:
        getTestClass in interface TestElementWrapper<org.apache.jmeter.extractor.BoundaryExtractor>
      • getRefName

        public java.lang.String getRefName()
        The name of the JMeter variable in which to store the result. Also note that each group is stored as [refname]_g#, where [refname] is the string you entered as the reference name, and # is the group number, where group 0 is the entire match, group 1 is the match from the first set of parentheses, etc.
      • setRefName

        public void setRefName​(java.lang.String refName)
        The name of the JMeter variable in which to store the result. Also note that each group is stored as [refname]_g#, where [refname] is the string you entered as the reference name, and # is the group number, where group 0 is the entire match, group 1 is the match from the first set of parentheses, etc.
      • getMatchNumber

        public java.lang.String getMatchNumber()
        Indicates which match to use. The boundaries may match multiple times.

        Use a value of zero to indicate JMeter should choose a match at random. A positive number N means to select the nth match. Negative numbers are used in conjunction with the ForEach Controller - see below.

      • setMatchNumber

        public void setMatchNumber​(java.lang.String matchNumber)
        Indicates which match to use. The boundaries may match multiple times.

        Use a value of zero to indicate JMeter should choose a match at random. A positive number N means to select the nth match. Negative numbers are used in conjunction with the ForEach Controller - see below.

      • getLeftBoundary

        public java.lang.String getLeftBoundary()
        Left boundary of value to find.
      • setLeftBoundary

        public void setLeftBoundary​(java.lang.String leftBoundary)
        Left boundary of value to find.
      • getRightBoundary

        public java.lang.String getRightBoundary()
        Right boundary of value to find.
      • setRightBoundary

        public void setRightBoundary​(java.lang.String rightBoundary)
        Right boundary of value to find.
      • isDefaultEmpty

        public boolean isDefaultEmpty()
        Use empty default value.
      • setDefaultEmpty

        public void setDefaultEmpty​(boolean defaultEmpty)
        Use empty default value.
      • getDefaultValue

        public java.lang.String getDefaultValue()
        If the boundaries do not match, then the reference variable will be set to the default value.
      • setDefaultValue

        public void setDefaultValue​(java.lang.String defaultValue)
        If the boundaries do not match, then the reference variable will be set to the default value.
      • getFieldToCheck

        public FieldToCheck getFieldToCheck()
        Field To check.
      • setFieldToCheck

        public void setFieldToCheck​(FieldToCheck fieldToCheck)
        Field To check.