jnr.constants.platform.OpenFlags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-unixsocket-nodep Show documentation
Show all versions of jnr-unixsocket-nodep Show documentation
com.github.jnr:jnr-unixsocket with orh.objectweb.asm shaded
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated 2010-07-31 18:57:13 +1000
package jnr.constants.platform;
public enum OpenFlags implements jnr.constants.Constant {
O_RDONLY,
O_WRONLY,
O_RDWR,
O_ACCMODE,
O_NONBLOCK,
O_APPEND,
O_SYNC,
O_SHLOCK,
O_EXLOCK,
O_ASYNC,
O_FSYNC,
O_NOFOLLOW,
O_CREAT,
O_TRUNC,
O_EXCL,
O_EVTONLY,
O_DIRECTORY,
O_SYMLINK,
O_BINARY,
O_NOCTTY,
__UNKNOWN_CONSTANT__;
private static final ConstantResolver resolver =
ConstantResolver.getBitmaskResolver(OpenFlags.class);
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 String toString() { return description(); }
public static OpenFlags valueOf(long value) {
return resolver.valueOf(value);
}
}