Метод |
Описание |
|
@typeof ( ) : Type |
|
|
charset ( ) : Charset |
|
|
charset ( Charset charset ) : void |
|
|
close ( ) : bool |
|
|
eachLine ( Func f ) : void |
|
|
endian ( ) : Endian |
|
|
endian ( Endian endian ) : void |
|
|
make ( InStream input ) : InStream |
|
|
make_ ( InStream self, InStream input ) : void |
|
|
peek ( ) : Long |
|
|
peekChar ( ) : Long |
|
|
pipe ( OutStream output ) : long |
|
|
pipe ( OutStream output, Long n ) : long |
|
|
pipe ( OutStream output, Long toPipe, bool cls ) : long |
|
|
r ( ) : int |
Read a byte using a Java primitive int. Most reads route to this method for efficient mapping to a java.io.InputStream. If we aren't overriding this method, then route back to read() for the subclass to handle. |
|
rChar ( ) : int |
Read char as primitive int. |
|
read ( ) : Long |
|
|
readAllBuf ( ) : Buf |
|
|
readAllLines ( ) : List |
|
|
readAllStr ( ) : string |
|
|
readAllStr ( bool normalizeNewlines ) : string |
|
|
readBool ( ) : bool |
|
|
readBuf ( Buf buf, long n ) : Long |
|
|
readBufFully ( Buf buf, long n ) : Buf |
|
|
readChar ( ) : Long |
|
|
readChars ( long n ) : string |
|
|
readDecimal ( ) : BigDecimal |
|
|
readF4 ( ) : double |
|
|
readF8 ( ) : double |
|
|
readLine ( ) : string |
|
|
readLine ( Long max ) : string |
|
|
readObj ( ) : object |
|
|
readObj ( Map options ) : object |
|
|
readProps ( ) : Map |
|
|
readPropsListVals ( ) : Map |
|
|
readS1 ( ) : long |
|
|
readS2 ( ) : long |
|
|
readS4 ( ) : long |
|
|
readS8 ( ) : long |
|
|
readStrToken ( ) : string |
|
|
readStrToken ( Long max ) : string |
|
|
readStrToken ( Long max, Func f ) : string |
|
|
readU1 ( ) : long |
|
|
readU2 ( ) : long |
|
|
readU4 ( ) : long |
|
|
readUtf ( ) : string |
|
|
skip ( long n ) : long |
|
|
unread ( int b ) : InStream |
Unread a byte using a .NET primitive int. If we aren't overriding this method, then route back to read() for the subclass to handle. |
|
unread ( long n ) : InStream |
|
|
unreadChar ( int b ) : InStream |
Unread char as primitive int. |
|
unreadChar ( long c ) : InStream |
|
|