All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.shmilyhe.convert.ast.token.ITokenizer Maven / Gradle / Ivy

There is a newer version: 3.1.3
Show newest version
package io.shmilyhe.convert.ast.token;

/**
 * 
 * 序列化器
 * 字符转成语法 token
 */
public interface ITokenizer {
    boolean hasNext();
    Token next();
    void back();
    void reset();
    void print();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy