public enum MmapError extends Enum<MmapError> implements NativeError
NativeError.NativeCallException| Enum Constant and Description |
|---|
E2BIG |
EACCES |
EAGAIN |
EBADF |
EBUSY |
ECHILD |
EDOM |
EEXIST |
EFAULT |
EFBIG |
EINTR |
EINVAL |
EIO |
EISDIR |
EMFILE |
EMLINK |
ENFILE |
ENODEV |
ENOENT |
ENOEXEC |
ENOMEM |
ENOSPC |
ENOTBLK |
ENOTDIR |
ENOTTY |
ENXIO |
EPERM |
EPIPE |
ERANGE |
EROFS |
ESPIPE |
ESRCH |
ETXTBSY |
EXDEV |
| Modifier and Type | Method and Description |
|---|---|
String |
desc() |
int |
errno() |
String |
mnemonic() |
static MmapError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MmapError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfcheckError, forErrnopublic static final MmapError EPERM
public static final MmapError ENOENT
public static final MmapError ESRCH
public static final MmapError EINTR
public static final MmapError EIO
public static final MmapError ENXIO
public static final MmapError E2BIG
public static final MmapError ENOEXEC
public static final MmapError EBADF
public static final MmapError ECHILD
public static final MmapError EAGAIN
public static final MmapError ENOMEM
public static final MmapError EACCES
public static final MmapError EFAULT
public static final MmapError ENOTBLK
public static final MmapError EBUSY
public static final MmapError EEXIST
public static final MmapError EXDEV
public static final MmapError ENODEV
public static final MmapError ENOTDIR
public static final MmapError EISDIR
public static final MmapError EINVAL
public static final MmapError ENFILE
public static final MmapError EMFILE
public static final MmapError ENOTTY
public static final MmapError ETXTBSY
public static final MmapError EFBIG
public static final MmapError ENOSPC
public static final MmapError ESPIPE
public static final MmapError EROFS
public static final MmapError EMLINK
public static final MmapError EPIPE
public static final MmapError EDOM
public static final MmapError ERANGE
public static MmapError[] values()
for (MmapError c : MmapError.values()) System.out.println(c);
public static MmapError valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int errno()
errno in interface NativeErrorpublic String desc()
desc in interface NativeErrorpublic String mnemonic()
mnemonic in interface NativeErrorCopyright © 2022. All rights reserved.