Enum UlimitName
- All Implemented Interfaces:
Serializable
,Comparable<UlimitName>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-04T00:39:28.537Z")
@Stability(Stable)
public enum UlimitName
extends Enum<UlimitName>
The resources to be limited.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionmax core dump file size.max cpu time (seconds) for a process.max data segment size.max file size.max number of file locks.max locked memory.max POSIX message queue size.max nice value for any process this user is running.maximum number of open file descriptors.maximum number of processes.size of the process' resident set (in pages).max realtime priority.timeout for realtime tasks.max number of pending signals.max stack size (in bytes). -
Method Summary
Modifier and TypeMethodDescriptionstatic UlimitName
Returns the enum constant of this type with the specified name.static UlimitName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CORE
max core dump file size. -
CPU
max cpu time (seconds) for a process. -
DATA
max data segment size. -
FSIZE
max file size. -
LOCKS
max number of file locks. -
MEMLOCK
max locked memory. -
MSGQUEUE
max POSIX message queue size. -
NICE
max nice value for any process this user is running. -
NOFILE
maximum number of open file descriptors. -
NPROC
maximum number of processes. -
RSS
size of the process' resident set (in pages). -
RTPRIO
max realtime priority. -
RTTIME
timeout for realtime tasks. -
SIGPENDING
max number of pending signals. -
STACK
max stack size (in bytes).
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-