org.jruby.ext.posix
public static enum POSIX.ERRORS extends java.lang.Enum<POSIX.ERRORS>
Enum Constant and Description |
---|
EACCESS |
EBADF |
EFAULT |
EIO |
ELOOP |
ENAMETOOLONG |
ENOENT |
ENOTDIR |
Modifier and Type | Method and Description |
---|---|
static POSIX.ERRORS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static POSIX.ERRORS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final POSIX.ERRORS ENOENT
public static final POSIX.ERRORS ENOTDIR
public static final POSIX.ERRORS ENAMETOOLONG
public static final POSIX.ERRORS EACCESS
public static final POSIX.ERRORS ELOOP
public static final POSIX.ERRORS EFAULT
public static final POSIX.ERRORS EIO
public static final POSIX.ERRORS EBADF
public static POSIX.ERRORS[] values()
for (POSIX.ERRORS c : POSIX.ERRORS.values()) System.out.println(c);
public static POSIX.ERRORS valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null