com.kenai.constantine.platform.windows
Enum Errno

java.lang.Object
  extended by java.lang.Enum<Errno>
      extended by com.kenai.constantine.platform.windows.Errno
All Implemented Interfaces:
Constant, java.io.Serializable, java.lang.Comparable<Errno>

public enum Errno
extends java.lang.Enum<Errno>
implements Constant


Enum Constant Summary
E2BIG
           
EACCES
           
EAGAIN
           
EBADF
           
EBUSY
           
ECHILD
           
EDEADLK
           
EDOM
           
EEXIST
           
EFAULT
           
EFBIG
           
EILSEQ
           
EINTR
           
EINVAL
           
EIO
           
EISDIR
           
EMFILE
           
EMLINK
           
ENAMETOOLONG
           
ENFILE
           
ENODEV
           
ENOENT
           
ENOEXEC
           
ENOLCK
           
ENOMEM
           
ENOSPC
           
ENOSYS
           
ENOTDIR
           
ENOTEMPTY
           
ENOTTY
           
ENXIO
           
EPERM
           
EPIPE
           
ERANGE
           
EROFS
           
ESPIPE
           
ESRCH
           
EXDEV
           
 
Field Summary
static long MAX_VALUE
           
static long MIN_VALUE
           
 
Method Summary
 java.lang.String toString()
           
 int value()
           
static Errno valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Errno[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.kenai.constantine.Constant
name
 

Enum Constant Detail

E2BIG

public static final Errno E2BIG

ENFILE

public static final Errno ENFILE

EPERM

public static final Errno EPERM

EDEADLK

public static final Errno EDEADLK

EBADF

public static final Errno EBADF

EMFILE

public static final Errno EMFILE

ENXIO

public static final Errno ENXIO

ECHILD

public static final Errno ECHILD

ERANGE

public static final Errno ERANGE

EBUSY

public static final Errno EBUSY

EAGAIN

public static final Errno EAGAIN

ESPIPE

public static final Errno ESPIPE

EFBIG

public static final Errno EFBIG

EINVAL

public static final Errno EINVAL

EXDEV

public static final Errno EXDEV

EACCES

public static final Errno EACCES

EIO

public static final Errno EIO

EDOM

public static final Errno EDOM

ENOTEMPTY

public static final Errno ENOTEMPTY

ENOLCK

public static final Errno ENOLCK

EINTR

public static final Errno EINTR

ENOTDIR

public static final Errno ENOTDIR

EROFS

public static final Errno EROFS

EISDIR

public static final Errno EISDIR

ENOMEM

public static final Errno ENOMEM

ENODEV

public static final Errno ENODEV

ENOSPC

public static final Errno ENOSPC

ENOEXEC

public static final Errno ENOEXEC

ENOSYS

public static final Errno ENOSYS

EEXIST

public static final Errno EEXIST

ENOTTY

public static final Errno ENOTTY

ENAMETOOLONG

public static final Errno ENAMETOOLONG

EPIPE

public static final Errno EPIPE

ESRCH

public static final Errno ESRCH

EILSEQ

public static final Errno EILSEQ

EFAULT

public static final Errno EFAULT

ENOENT

public static final Errno ENOENT

EMLINK

public static final Errno EMLINK
Field Detail

MIN_VALUE

public static final long MIN_VALUE
See Also:
Constant Field Values

MAX_VALUE

public static final long MAX_VALUE
See Also:
Constant Field Values
Method Detail

values

public static Errno[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Errno c : Errno.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Errno valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public final java.lang.String toString()
Overrides:
toString in class java.lang.Enum<Errno>

value

public final int value()
Specified by:
value in interface Constant