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

com.silentgo.json.parser.Reader Maven / Gradle / Ivy

package com.silentgo.json.parser;

/**
 * Project : SilentGo
 * Package : com.silentgo.json
 *
 * @author teddyzhu
 *         

* Created by teddyzhu on 2017/1/4. */ public abstract class Reader { public int pos; public int end; public abstract byte next(); public abstract boolean hasNext(); public abstract byte peek(); public abstract byte peek(int position); public abstract byte peekNext(); public abstract String peekRange(int start, int length); public abstract Reader expand(int pos, int end); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy