Top Fields Constructors Methods
org.jruby.util

pack-priv Class EmptyFileResource

extends Object
implements FileResource
Class Inheritance
All Implemented Interfaces
org.jruby.util.FileResource
Imports
jnr.constants.platform.Errno, jnr.posix.FileStat, java.io.File, .IOException, .InputStream, java.nio.channels.Channel

Field Summary

Modifier and TypeField and Description
pack-priv static final EmptyFileResource

Constructor Summary

AccessConstructor and Description
pack-priv

Method Summary

Modifier and TypeMethod and Description
public String
public boolean
public String
public boolean
public boolean
public static EmptyFileResource
create(String pathname)

public int
public boolean
public boolean
public boolean
public long
public long
public String[]
public FileStat
public Channel
openChannel(int flags, int perm)

Implements org.jruby.util.FileResource.openChannel.

public InputStream
openInputStream()

Implements org.jruby.util.FileResource.openInputStream.

Opens a new input stream to read the contents of a resource and returns it.

public String
public FileStat
public String
toString()

Overrides java.lang.Object.toString.

Returns a string representation of the object.

public <T> T
unwrap(Class<T> type)

Implements org.jruby.util.FileResource.unwrap.

Unwrap the resource backend (replacement for hackyGetJRubyFile()).

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAllwaitwaitwait

Field Detail

INSTANCEback to summary
pack-priv static final EmptyFileResource INSTANCE

Constructor Detail

EmptyFileResourceback to summary
pack-priv EmptyFileResource()

Method Detail

absolutePathback to summary
public String absolutePath()

Implements org.jruby.util.FileResource.absolutePath.

Annotations
@Override
canExecuteback to summary
public boolean canExecute()

Implements org.jruby.util.FileResource.canExecute.

Annotations
@Override
canonicalPathback to summary
public String canonicalPath()

Implements org.jruby.util.FileResource.canonicalPath.

Annotations
@Override
canReadback to summary
public boolean canRead()

Implements org.jruby.util.FileResource.canRead.

Annotations
@Override
canWriteback to summary
public boolean canWrite()

Implements org.jruby.util.FileResource.canWrite.

Annotations
@Override
createback to summary
public static EmptyFileResource create(String pathname)
errnoback to summary
public int errno()

Implements org.jruby.util.FileResource.errno.

Annotations
@Override
existsback to summary
public boolean exists()

Implements org.jruby.util.FileResource.exists.

Annotations
@Override
isDirectoryback to summary
public boolean isDirectory()

Implements org.jruby.util.FileResource.isDirectory.

Annotations
@Override
isFileback to summary
public boolean isFile()

Implements org.jruby.util.FileResource.isFile.

Annotations
@Override
lastModifiedback to summary
public long lastModified()

Implements org.jruby.util.FileResource.lastModified.

Annotations
@Override
lengthback to summary
public long length()

Implements org.jruby.util.FileResource.length.

Annotations
@Override
listback to summary
public String[] list()

Implements org.jruby.util.FileResource.list.

Annotations
@Override
lstatback to summary
public FileStat lstat()

Implements org.jruby.util.FileResource.lstat.

Annotations
@Override
openChannelback to summary
public Channel openChannel(int flags, int perm) throws IOException

Implements org.jruby.util.FileResource.openChannel.

Annotations
@Override
openInputStreamback to summary
public InputStream openInputStream() throws IOException

Implements org.jruby.util.FileResource.openInputStream.

Doc from org.jruby.util.FileResource.openInputStream.

Opens a new input stream to read the contents of a resource and returns it. Note that implementations may be allocating native memory for the stream, so callers need to close this when they are done with it. users of this method should follow the pattern: close the stream where you open it.

Returns:InputStream

InputStream

Annotations
@Override
pathback to summary
public String path()

Implements org.jruby.util.FileResource.path.

Annotations
@Override
statback to summary
public FileStat stat()

Implements org.jruby.util.FileResource.stat.

Annotations
@Override
toStringback to summary
public String toString()

Overrides java.lang.Object.toString.

Doc from java.lang.Object.toString.

Returns a string representation of the object. Satisfying this method's contract implies a non-null result must be returned.

Returns:String

a string representation of the object

Annotations
@Override
unwrapback to summary
public <T> T unwrap(Class<T> type) throws UnsupportedOperationException

Implements org.jruby.util.FileResource.unwrap.

Doc from org.jruby.util.FileResource.unwrap.

Unwrap the resource backend (replacement for hackyGetJRubyFile()).

Returns:T

backend if supported

Annotations
@Override