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

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

package com.silentgo.json.parser;

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

* Created by teddyzhu on 2017/1/12. */ public class StringReader extends ByteReader { public StringReader(String input) { super(input.getBytes(), -1, input.getBytes().length); } public StringReader(String input, int pos, int end) { super(input.getBytes(), pos, end); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy