Lines Matching defs:PrintWriter

56 public class PrintWriter extends Writer {
60 * {@code PrintWriter}.
89 * Creates a new PrintWriter, without automatic line flushing.
93 public PrintWriter (Writer out) {
98 * Creates a new PrintWriter.
105 public PrintWriter(Writer out,
113 * Creates a new PrintWriter, without automatic line flushing, from an
122 public PrintWriter(OutputStream out) {
127 * Creates a new PrintWriter from an existing OutputStream. This
139 public PrintWriter(OutputStream out, boolean autoFlush) {
149 * Creates a new PrintWriter, without automatic line flushing, with the
175 public PrintWriter(String fileName) throws FileNotFoundException {
181 private PrintWriter(Charset charset, File file)
189 * Creates a new PrintWriter, without automatic line flushing, with the
221 public PrintWriter(String fileName, String csn)
228 * Creates a new PrintWriter, without automatic line flushing, with the
254 public PrintWriter(File file) throws FileNotFoundException {
260 * Creates a new PrintWriter, without automatic line flushing, with the
292 public PrintWriter(File file, String csn)
351 if (out instanceof java.io.PrintWriter) {
352 PrintWriter pw = (PrintWriter) out;
804 public PrintWriter printf(String format, Object ... args) {
857 public PrintWriter printf(Locale l, String format, Object ... args) {
901 public PrintWriter format(String format, Object ... args) {
961 public PrintWriter format(Locale l, String format, Object ... args) {
1004 public PrintWriter append(CharSequence csq) {
1043 public PrintWriter append(CharSequence csq, int start, int end) {
1065 public PrintWriter append(char c) {