Class SearchState


  • public final class SearchState
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int end  
      private boolean found  
      private int start  
    • Constructor Summary

      Constructors 
      Constructor Description
      SearchState​(int start, int end, boolean found)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getEnd()  
      int getStart()  
      boolean isFound()  
      • Methods inherited from class java.lang.Object

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

      • start

        private final int start
      • end

        private final int end
      • found

        private final boolean found
    • Constructor Detail

      • SearchState

        public SearchState​(int start,
                           int end,
                           boolean found)
    • Method Detail

      • getStart

        public int getStart()
      • getEnd

        public int getEnd()
      • isFound

        public boolean isFound()