Enum Errno

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Errno>, Constant

    public enum Errno
    extends java.lang.Enum<Errno>
    implements Constant
    • 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
    • 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()
      • intValue

        public final int intValue()
        Specified by:
        intValue in interface Constant
      • longValue

        public final long longValue()
        Specified by:
        longValue in interface Constant
      • defined

        public final boolean defined()
        Specified by:
        defined in interface Constant