Forwards calls to a given file object. Subclasses of this class might override some of these methods and might also provide additional fields and methods.
Forwards calls to a given file object. Subclasses of this class might override some of these methods and might also provide additional fields and methods.
(delete this)
Description copied from interface: FileObject
returns: true if and only if this file object is successfully
deleted; false otherwise - boolean
Description copied from interface: FileObject returns: true if and only if this file object is successfully deleted; false otherwise - `boolean`
(get-char-content this ignore-encoding-errors)
Description copied from interface: FileObject
ignore-encoding-errors - ignore encoding errors if true - boolean
returns: a CharSequence if available; null otherwise - java.lang.CharSequence
throws: java.lang.IllegalStateException - if this file object was opened for writing and does not support reading
Description copied from interface: FileObject ignore-encoding-errors - ignore encoding errors if true - `boolean` returns: a CharSequence if available; null otherwise - `java.lang.CharSequence` throws: java.lang.IllegalStateException - if this file object was opened for writing and does not support reading
(get-last-modified this)
Description copied from interface: FileObject
returns: the time this file object was last modified; or 0 if
the file object does not exist, if an I/O error occurred, or if
the operation is not supported - long
Description copied from interface: FileObject returns: the time this file object was last modified; or 0 if the file object does not exist, if an I/O error occurred, or if the operation is not supported - `long`
(get-name this)
Description copied from interface: FileObject
returns: a user-friendly name - java.lang.String
Description copied from interface: FileObject returns: a user-friendly name - `java.lang.String`
(open-input-stream this)
Description copied from interface: FileObject
returns: an InputStream - java.io.InputStream
throws: java.lang.IllegalStateException - if this file object was opened for writing and does not support reading
Description copied from interface: FileObject returns: an InputStream - `java.io.InputStream` throws: java.lang.IllegalStateException - if this file object was opened for writing and does not support reading
(open-output-stream this)
Description copied from interface: FileObject
returns: an OutputStream - java.io.OutputStream
throws: java.lang.IllegalStateException - if this file object was opened for reading and does not support writing
Description copied from interface: FileObject returns: an OutputStream - `java.io.OutputStream` throws: java.lang.IllegalStateException - if this file object was opened for reading and does not support writing
(open-reader this ignore-encoding-errors)
Description copied from interface: FileObject
ignore-encoding-errors - ignore encoding errors if true - boolean
returns: a Reader - java.io.Reader
throws: java.lang.IllegalStateException - if this file object was opened for writing and does not support reading
Description copied from interface: FileObject ignore-encoding-errors - ignore encoding errors if true - `boolean` returns: a Reader - `java.io.Reader` throws: java.lang.IllegalStateException - if this file object was opened for writing and does not support reading
(open-writer this)
Description copied from interface: FileObject
returns: a Writer - java.io.Writer
throws: java.lang.IllegalStateException - if this file object was opened for reading and does not support writing
Description copied from interface: FileObject returns: a Writer - `java.io.Writer` throws: java.lang.IllegalStateException - if this file object was opened for reading and does not support writing
(to-uri this)
Description copied from interface: FileObject
returns: a URI - java.net.URI
Description copied from interface: FileObject returns: a URI - `java.net.URI`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close