Package net.percederberg.grammatica.parser

Examples of net.percederberg.grammatica.parser.ReaderBuffer


     * @param str            the string to work with
     *
     * @return the regular expression matcher
     */
    public Matcher matcher(String str) {
        return matcher(new ReaderBuffer(new StringReader(str)));
    }
View Full Code Here


     * @param str            the new string to work with
     *
     * @since 1.5
     */
    public void reset(String str) {
        reset(new ReaderBuffer(new StringReader(str)));
    }
View Full Code Here

TOP

Related Classes of net.percederberg.grammatica.parser.ReaderBuffer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.