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 |
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() |
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 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 nullCopyright © 2017. All Rights Reserved.