Java javax.tools JavaFileObject fields, constructors, methods, implement or subclass

Example usage for Java javax.tools JavaFileObject fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.tools JavaFileObject.

The text is from its open source code.

Implementation

javax.tools.JavaFileObject has the following implementations.
Click this link to see all its implementation.

Method

booleandelete()
Deletes this file object.
CharSequencegetCharContent(boolean ignoreEncodingErrors)
Returns the character content of this file object, if available.
ClassgetClass()
Returns the runtime class of this Object .
KindgetKind()
Returns the kind of this file object.
longgetLastModified()
Returns the time this file object was last modified.
StringgetName()
Returns a user-friendly name for this file object.
InputStreamopenInputStream()
Returns an InputStream for this file object.
OutputStreamopenOutputStream()
Returns an OutputStream for this file object.
ReaderopenReader(boolean ignoreEncodingErrors)
Returns a reader for this object.
WriteropenWriter()
Returns a Writer for this file object.
URItoUri()
Returns a URI identifying this file object.