Class Strings.Result

    • Field Summary

      Fields 
      Modifier and Type Field Description
      int next
      The next index.
      char separator
      The separator found.
      java.lang.String token
      The converted string.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected Result​(int next, char separator)  
      protected Result​(int next, java.lang.String token, char separator)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • next

        public int next
        The next index.
      • token

        public java.lang.String token
        The converted string.
      • separator

        public char separator
        The separator found. If no separator but end-of-line found, ((char)0) is returned.
    • Constructor Detail

      • Result

        protected Result​(int next,
                         java.lang.String token,
                         char separator)
      • Result

        protected Result​(int next,
                         char separator)
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object