- mark(int) - Method in class java.io.BufferedInputStream
-
See the general contract of the mark
method of InputStream.
- mark(int) - Method in class java.io.BufferedReader
-
Marks the present position in the stream.
- mark(int) - Method in class java.io.CharArrayReader
-
Marks the present position in the stream.
- mark(int) - Method in class java.io.PushbackInputStream
-
Marks the current position in this input stream.
- mark(int) - Method in class java.io.StringReader
-
Marks the present position in the stream.
- markedPos - Variable in class java.io.CharArrayReader
-
The position of mark in buffer.
- marklimit - Variable in class java.io.BufferedInputStream
-
The maximum read ahead allowed after a call to the
mark method before subsequent calls to the
reset method fail.
- markpos - Variable in class java.io.BufferedInputStream
-
The value of the pos field at the time the last
mark method was called.
- markSupported() - Method in class java.io.BufferedInputStream
-
Tests if this input stream supports the mark
and reset methods.
- markSupported() - Method in class java.io.BufferedReader
-
Tells whether this stream supports the mark() operation, which it does.
- markSupported() - Method in class java.io.CharArrayReader
-
Tells whether this stream supports the mark() operation, which it does.
- markSupported() - Method in class java.io.PushbackInputStream
-
Tests if this input stream supports the mark and
reset methods, which it does not.
- markSupported() - Method in class java.io.StringReader
-
Tells whether this stream supports the mark() operation, which it does.