groovy.io
Class GroovyPrintWriter
java.lang.Object
  
java.io.Writer
      
java.io.PrintWriter
          
groovy.io.GroovyPrintWriter
- All Implemented Interfaces: 
 - Closeable, Flushable, Appendable
 
public class GroovyPrintWriter
- extends PrintWriter
 
A PrintWriter that outputs objects in Groovy style.
 That means print(Object) uses InvokerHelper.toString(Object)
 to produce the same results as Writer.print(Object).
- Since:
 
  - 1.6
 
- Author:
 
  - Jim White
 
 
 
 
 
 
| Methods inherited from class java.io.PrintWriter | 
append, append, append, checkError, clearError, close, flush, format, format, print, print, print, print, print, print, print, print, printf, printf, println, println, println, println, println, println, println, println, println, setError, write, write, write, write, write | 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
GroovyPrintWriter
public GroovyPrintWriter(File file)
                  throws FileNotFoundException
- Throws:
 FileNotFoundException
GroovyPrintWriter
public GroovyPrintWriter(File file,
                         String csn)
                  throws FileNotFoundException,
                         UnsupportedEncodingException
- Throws:
 FileNotFoundException
UnsupportedEncodingException
GroovyPrintWriter
public GroovyPrintWriter(Writer out)
GroovyPrintWriter
public GroovyPrintWriter(Writer out,
                         boolean autoflush)
GroovyPrintWriter
public GroovyPrintWriter(OutputStream out)
GroovyPrintWriter
public GroovyPrintWriter(OutputStream out,
                         boolean autoflush)
GroovyPrintWriter
public GroovyPrintWriter(String filename)
                  throws FileNotFoundException
- Throws:
 FileNotFoundException
GroovyPrintWriter
public GroovyPrintWriter(String filename,
                         String csn)
                  throws FileNotFoundException,
                         UnsupportedEncodingException
- Throws:
 FileNotFoundException
UnsupportedEncodingException
print
public void print(Object x)
- Overrides:
 print in class PrintWriter
 
 
println
public void println(Object x)
- Overrides:
 println in class PrintWriter