Class AndSelector

  • All Implemented Interfaces:
    Selector

    public class AndSelector
    extends java.lang.Object
    implements Selector
    All selectors will be arranged as a pipeline.
    The next selector uses the result of the previous as source.
    Since:
    0.2.0
    Author:
    code4crafter@gmail.com
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String select​(java.lang.String text)
      Extract single result in text.
      If there are more than one result, only the first will be chosen.
      java.util.List<java.lang.String> selectList​(java.lang.String text)
      Extract all results in text.
      • Methods inherited from class java.lang.Object

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

      • AndSelector

        public AndSelector​(Selector... selectors)
      • AndSelector

        public AndSelector​(java.util.List<Selector> selectors)
    • Method Detail

      • select

        public java.lang.String select​(java.lang.String text)
        Description copied from interface: Selector
        Extract single result in text.
        If there are more than one result, only the first will be chosen.
        Specified by:
        select in interface Selector
        Parameters:
        text - text
        Returns:
        result
      • selectList

        public java.util.List<java.lang.String> selectList​(java.lang.String text)
        Description copied from interface: Selector
        Extract all results in text.
        Specified by:
        selectList in interface Selector
        Parameters:
        text - text
        Returns:
        results