com.kenai.constantine.platform.Fcntl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-constants Show documentation
Show all versions of jnr-constants Show documentation
A set of platform constants (e.g. errno values)
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated Sat May 02 18:23:30 +1000 2009
package com.kenai.constantine.platform;
@Deprecated
public enum Fcntl implements com.kenai.constantine.Constant {
F_DUPFD,
F_GETFD,
F_SETFD,
F_GETFL,
F_SETFL,
F_GETOWN,
F_SETOWN,
F_GETLK,
F_SETLK,
F_SETLKW,
F_CHKCLEAN,
F_PREALLOCATE,
F_SETSIZE,
F_RDADVISE,
F_RDAHEAD,
F_READBOOTSTRAP,
F_WRITEBOOTSTRAP,
F_NOCACHE,
F_LOG2PHYS,
F_GETPATH,
F_FULLFSYNC,
F_PATHPKG_CHECK,
F_FREEZE_FS,
F_THAW_FS,
F_GLOBAL_NOCACHE,
F_ADDSIGS,
F_MARKDEPENDENCY,
F_RDLCK,
F_UNLCK,
F_WRLCK,
F_ALLOCATECONTIG,
F_ALLOCATEALL,
__UNKNOWN_CONSTANT__;
private static final ConstantResolver resolver =
ConstantResolver.getResolver(Fcntl.class, 20000, 20999);
public final int value() { return resolver.intValue(this); }
public final int intValue() { return (int) resolver.longValue(this); }
public final long longValue() { return resolver.longValue(this); }
public final String description() { return resolver.description(this); }
public final boolean defined() { return true; }
public final String toString() { return description(); }
public final static Fcntl valueOf(int value) {
return resolver.valueOf(value);
}
}