Example usage for Java javax.tools FileObject fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | delete() Deletes this file object. |
boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |
long | getLastModified() Returns the time this file object was last modified. |
String | getName() Returns a user-friendly name for this file object. |
InputStream | openInputStream() Returns an InputStream for this file object. |
OutputStream | openOutputStream() Returns an OutputStream for this file object. |
Reader | openReader(boolean ignoreEncodingErrors) Returns a reader for this object. |
Writer | openWriter() Returns a Writer for this file object. |
String | toString() Returns a string representation of the object. |
URI | toUri() Returns a URI identifying this file object. |