Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_quote (0.04 sec)

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

     */
    public class Tokenizer {
    
        /**
         * Represents EOF (End of File).
         */
        public static final int TT_EOF = -1;
    
        /**
         * Represents a Quote.
         */
        public static final int TT_QUOTE = '\'';
    
        /**
         * Represents a word.
         */
        public static final int TT_WORD = -3;
    
        private static final int TT_NOTHING = -4;
    
        private static final int NEED_CHAR = Integer.MAX_VALUE;
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top