Lines Matching refs:PrintStream

35 public class PrintStream extends FilterOutputStream implements Appendable, Closeable {
37 * indicates whether or not this PrintStream has incurred an error.
42 * indicates whether or not this PrintStream should flush its contents after
50 * Constructs a new {@code PrintStream} with {@code out} as its target
59 public PrintStream(OutputStream out) {
67 * Constructs a new {@code PrintStream} with {@code out} as its target
80 public PrintStream(OutputStream out, boolean autoFlush) {
89 * Constructs a new {@code PrintStream} with {@code out} as its target
106 public PrintStream(OutputStream out, boolean autoFlush, String charsetName)
126 * Constructs a new {@code PrintStream} with {@code file} as its target. The
135 public PrintStream(File file) throws FileNotFoundException {
140 * Constructs a new {@code PrintStream} with {@code file} as its target. The
155 public PrintStream(File file, String charsetName) throws FileNotFoundException,
168 * Constructs a new {@code PrintStream} with the file identified by
178 public PrintStream(String fileName) throws FileNotFoundException {
183 * Constructs a new {@code PrintStream} with the file identified by
199 public PrintStream(String fileName, String charsetName)
283 public PrintStream format(String format, Object... args) {
306 public PrintStream format(Locale l, String format, Object... args) {
333 public PrintStream printf(String format, Object... args) {
356 public PrintStream printf(Locale l, String format, Object... args) {
616 public PrintStream append(char c) {
625 public PrintStream append(CharSequence charSequence) {
651 public PrintStream append(CharSequence charSequence, int start, int end) {