jnr.constants.platform.Access 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 2015-05-05 15:32:13 -0400
package jnr.constants.platform;
public enum Access implements jnr.constants.Constant {
F_OK,
X_OK,
W_OK,
R_OK,
__UNKNOWN_CONSTANT__;
private static final ConstantResolver resolver =
ConstantResolver.getBitmaskResolver(Access.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 boolean defined() { return resolver.defined(this); }
public final String toString() { return description(); }
public static Access valueOf(long value) {
return resolver.valueOf(value);
}
}