Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for processOrdinary (0.2 sec)

  1. src/main/java/org/codelibs/core/text/Tokenizer.java

                return ttype;
            }
            if (processWord()) {
                return ttype;
            }
            if (processQuote()) {
                return ttype;
            }
            if (processOrdinary()) {
                return ttype;
            }
            ttype = peekc;
            return ttype;
        }
    
        /**
         * 既に読み込んだ文字列を返します。
         *
         * @return 既に読み込んだ文字列
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.6K bytes
    - Viewed (0)
Back to top