Examples of pushbackChar()


Examples of org.apache.jena.atlas.io.PeekReader.pushbackChar()

        checkLineCol(r, lineNum, colNum) ;
        assertEquals('1', r.readChar()) ;
       
        checkLineCol(r, lineNum, colNum) // Unmoved.
        r.pushbackChar('2') ;
        r.pushbackChar('3') ;
        checkLineCol(r, lineNum, colNum) // Unmoved.
        assertEquals('3', r.peekChar()) ;
        contains(r, "320") ;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.