Package com.kenai.constantine.platform
Enum Fcntl
- java.lang.Object
-
- java.lang.Enum<Fcntl>
-
- com.kenai.constantine.platform.Fcntl
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __UNKNOWN_CONSTANT__
Deprecated.F_ADDSIGS
Deprecated.F_ALLOCATEALL
Deprecated.F_ALLOCATECONTIG
Deprecated.F_CHKCLEAN
Deprecated.F_DUPFD
Deprecated.F_FREEZE_FS
Deprecated.F_FULLFSYNC
Deprecated.F_GETFD
Deprecated.F_GETFL
Deprecated.F_GETLK
Deprecated.F_GETOWN
Deprecated.F_GETPATH
Deprecated.F_GLOBAL_NOCACHE
Deprecated.F_LOG2PHYS
Deprecated.F_MARKDEPENDENCY
Deprecated.F_NOCACHE
Deprecated.F_PATHPKG_CHECK
Deprecated.F_PREALLOCATE
Deprecated.F_RDADVISE
Deprecated.F_RDAHEAD
Deprecated.F_RDLCK
Deprecated.F_READBOOTSTRAP
Deprecated.F_SETFD
Deprecated.F_SETFL
Deprecated.F_SETLK
Deprecated.F_SETLKW
Deprecated.F_SETOWN
Deprecated.F_SETSIZE
Deprecated.F_THAW_FS
Deprecated.F_UNLCK
Deprecated.F_WRITEBOOTSTRAP
Deprecated.F_WRLCK
Deprecated.
-
Field Summary
Fields Modifier and Type Field Description private static ConstantResolver<Fcntl>
resolver
Deprecated.
-
Constructor Summary
Constructors Modifier Constructor Description private
Fcntl()
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
defined()
Deprecated.java.lang.String
description()
Deprecated.int
intValue()
Deprecated.long
longValue()
Deprecated.java.lang.String
toString()
Deprecated.int
value()
Deprecated.static Fcntl
valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name.static Fcntl
valueOf(java.lang.String name)
Deprecated.Returns the enum constant of this type with the specified name.static Fcntl[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
F_DUPFD
public static final Fcntl F_DUPFD
Deprecated.
-
F_GETFD
public static final Fcntl F_GETFD
Deprecated.
-
F_SETFD
public static final Fcntl F_SETFD
Deprecated.
-
F_GETFL
public static final Fcntl F_GETFL
Deprecated.
-
F_SETFL
public static final Fcntl F_SETFL
Deprecated.
-
F_GETOWN
public static final Fcntl F_GETOWN
Deprecated.
-
F_SETOWN
public static final Fcntl F_SETOWN
Deprecated.
-
F_GETLK
public static final Fcntl F_GETLK
Deprecated.
-
F_SETLK
public static final Fcntl F_SETLK
Deprecated.
-
F_SETLKW
public static final Fcntl F_SETLKW
Deprecated.
-
F_CHKCLEAN
public static final Fcntl F_CHKCLEAN
Deprecated.
-
F_PREALLOCATE
public static final Fcntl F_PREALLOCATE
Deprecated.
-
F_SETSIZE
public static final Fcntl F_SETSIZE
Deprecated.
-
F_RDADVISE
public static final Fcntl F_RDADVISE
Deprecated.
-
F_RDAHEAD
public static final Fcntl F_RDAHEAD
Deprecated.
-
F_READBOOTSTRAP
public static final Fcntl F_READBOOTSTRAP
Deprecated.
-
F_WRITEBOOTSTRAP
public static final Fcntl F_WRITEBOOTSTRAP
Deprecated.
-
F_NOCACHE
public static final Fcntl F_NOCACHE
Deprecated.
-
F_LOG2PHYS
public static final Fcntl F_LOG2PHYS
Deprecated.
-
F_GETPATH
public static final Fcntl F_GETPATH
Deprecated.
-
F_FULLFSYNC
public static final Fcntl F_FULLFSYNC
Deprecated.
-
F_PATHPKG_CHECK
public static final Fcntl F_PATHPKG_CHECK
Deprecated.
-
F_FREEZE_FS
public static final Fcntl F_FREEZE_FS
Deprecated.
-
F_THAW_FS
public static final Fcntl F_THAW_FS
Deprecated.
-
F_GLOBAL_NOCACHE
public static final Fcntl F_GLOBAL_NOCACHE
Deprecated.
-
F_ADDSIGS
public static final Fcntl F_ADDSIGS
Deprecated.
-
F_MARKDEPENDENCY
public static final Fcntl F_MARKDEPENDENCY
Deprecated.
-
F_RDLCK
public static final Fcntl F_RDLCK
Deprecated.
-
F_UNLCK
public static final Fcntl F_UNLCK
Deprecated.
-
F_WRLCK
public static final Fcntl F_WRLCK
Deprecated.
-
F_ALLOCATECONTIG
public static final Fcntl F_ALLOCATECONTIG
Deprecated.
-
F_ALLOCATEALL
public static final Fcntl F_ALLOCATEALL
Deprecated.
-
__UNKNOWN_CONSTANT__
public static final Fcntl __UNKNOWN_CONSTANT__
Deprecated.
-
-
Field Detail
-
resolver
private static final ConstantResolver<Fcntl> resolver
Deprecated.
-
-
Method Detail
-
values
public static Fcntl[] values()
Deprecated.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 (Fcntl c : Fcntl.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Fcntl valueOf(java.lang.String name)
Deprecated.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 namejava.lang.NullPointerException
- if the argument is null
-
description
public final java.lang.String description()
Deprecated.
-
toString
public final java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Enum<Fcntl>
-
valueOf
public static final Fcntl valueOf(int value)
Deprecated.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:
value
- 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 namejava.lang.NullPointerException
- if the argument is null
-
-