Enum Constant and Description |
---|
__UNKNOWN_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 |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
description() |
java.lang.String |
toString() |
int |
value() |
static RLIMIT |
valueOf(int value) |
static RLIMIT |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RLIMIT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RLIMIT RLIMIT_AS
public static final RLIMIT RLIMIT_CORE
public static final RLIMIT RLIMIT_CPU
public static final RLIMIT RLIMIT_DATA
public static final RLIMIT RLIMIT_FSIZE
public static final RLIMIT RLIMIT_LOCKS
public static final RLIMIT RLIMIT_MEMLOCK
public static final RLIMIT RLIMIT_MSGQUEUE
public static final RLIMIT RLIMIT_NICE
public static final RLIMIT RLIMIT_NLIMITS
public static final RLIMIT RLIMIT_NOFILE
public static final RLIMIT RLIMIT_NPROC
public static final RLIMIT RLIMIT_OFILE
public static final RLIMIT RLIMIT_RSS
public static final RLIMIT RLIMIT_RTPRIO
public static final RLIMIT RLIMIT_RTTIME
public static final RLIMIT RLIMIT_SIGPENDING
public static final RLIMIT RLIMIT_STACK
public static final RLIMIT __UNKNOWN_CONSTANT__
public static RLIMIT[] values()
for (RLIMIT c : RLIMIT.values()) System.out.println(c);
public static RLIMIT valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic final java.lang.String description()
public final java.lang.String toString()
toString
in class java.lang.Enum<RLIMIT>
public static final RLIMIT valueOf(int value)