public enum Fcntl extends Enum<Fcntl> implements Constant
Enum Constant and Description |
---|
F_DUPFD |
F_GETFD |
F_GETFL |
F_GETLK |
F_GETOWN |
F_RDLCK |
F_SETFD |
F_SETFL |
F_SETLK |
F_SETLKW |
F_SETOWN |
F_UNLCK |
F_WRLCK |
FAPPEND |
FASYNC |
FFSYNC |
FNDELAY |
FNONBLOCK |
FREAD |
FWRITE |
Modifier and Type | Field and Description |
---|---|
static long |
MAX_VALUE |
static long |
MIN_VALUE |
Modifier and Type | Method and Description |
---|---|
boolean |
defined() |
int |
intValue() |
long |
longValue() |
int |
value() |
static Fcntl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Fcntl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fcntl FREAD
public static final Fcntl FWRITE
public static final Fcntl FAPPEND
public static final Fcntl FASYNC
public static final Fcntl FFSYNC
public static final Fcntl FNONBLOCK
public static final Fcntl FNDELAY
public static final Fcntl F_DUPFD
public static final Fcntl F_GETFD
public static final Fcntl F_SETFD
public static final Fcntl F_GETFL
public static final Fcntl F_SETFL
public static final Fcntl F_GETOWN
public static final Fcntl F_SETOWN
public static final Fcntl F_GETLK
public static final Fcntl F_SETLK
public static final Fcntl F_SETLKW
public static final Fcntl F_RDLCK
public static final Fcntl F_UNLCK
public static final Fcntl F_WRLCK
public static final long MIN_VALUE
public static final long MAX_VALUE
public static Fcntl[] values()
for (Fcntl c : Fcntl.values()) System.out.println(c);
public static Fcntl 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 final int value()
Copyright © 2017. All Rights Reserved.