Class LineSeparatorDetector

    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      protected abstract void apply​(char lineSeparator1, char lineSeparator2)  
      void execute​(char[] characters, int length)
      A sequence of characters of the input buffer to be analyzed.
      • Methods inherited from class java.lang.Object

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

      • LineSeparatorDetector

        public LineSeparatorDetector()
    • Method Detail

      • execute

        public void execute​(char[] characters,
                            int length)
        Description copied from interface: InputAnalysisProcess
        A sequence of characters of the input buffer to be analyzed.
        Specified by:
        execute in interface InputAnalysisProcess
        Parameters:
        characters - the input buffer
        length - the last character position loaded into the buffer.
      • apply

        protected abstract void apply​(char lineSeparator1,
                                      char lineSeparator2)