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

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

Introduction

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

The text is from its open source code.

Implementation

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

Constructor

Method

booleandelete()
Deletes this file object.
booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
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.
StringtoString()
Returns a string representation of the object.
URItoUri()
Returns a URI identifying this file object.