Class OrSelector

  • All Implemented Interfaces:
    Selector

    public class OrSelector
    extends java.lang.Object
    implements Selector
    All extractors will do extracting separately,
    and the results of extractors will combined as the final result.
    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

      • OrSelector

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

        public OrSelector​(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