Class BaseParser

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      static LinkExtractorParser getParser(String parserClassName) Factory method of parsers.
      boolean isReusable() Parsers should over-ride this method if the parser class is re-usable, in which case the class will be cached for the next getParser() call.
      • Methods inherited from class org.apache.jmeter.protocol.http.parser.LinkExtractorParser

        getEmbeddedResourceURLs
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • getParser

         static LinkExtractorParser getParser(String parserClassName)

        Factory method of parsers. Instances might get cached, when isReusable on the newly created instance equals true.

        Parameters:
        parserClassName - name of the class that should be used to create new parsers
      • isReusable

         boolean isReusable()

        Parsers should over-ride this method if the parser class is re-usable, in which case the class will be cached for the next getParser() call.