All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jnr.constants.platform.RLIMIT Maven / Gradle / Ivy

The newest version!
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated 2010-07-31 18:57:14 +1000
package jnr.constants.platform;
public enum RLIMIT implements jnr.constants.Constant {
RLIMIT_AS,
RLIMIT_CORE,
RLIMIT_CPU,
RLIMIT_DATA,
RLIMIT_FSIZE,
RLIMIT_LOCKS,
RLIMIT_MEMLOCK,
RLIMIT_MSGQUEUE,
RLIMIT_NICE,
RLIMIT_NLIMITS,
RLIMIT_NOFILE,
RLIMIT_NPROC,
RLIMIT_OFILE,
RLIMIT_RSS,
RLIMIT_RTPRIO,
RLIMIT_RTTIME,
RLIMIT_SIGPENDING,
RLIMIT_STACK,
__UNKNOWN_CONSTANT__;
private static final ConstantResolver resolver = 
ConstantResolver.getResolver(RLIMIT.class, 20000, 29999);
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 RLIMIT valueOf(long value) { 
    return resolver.valueOf(value);
}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy