Package org.lwjgl.system
Enum MemoryUtil.MemoryAllocationReport.Aggregate
java.lang.Object
java.lang.Enum<MemoryUtil.MemoryAllocationReport.Aggregate>
org.lwjgl.system.MemoryUtil.MemoryAllocationReport.Aggregate
- All Implemented Interfaces:
Serializable
,Comparable<MemoryUtil.MemoryAllocationReport.Aggregate>
,java.lang.constant.Constable
- Enclosing interface:
MemoryUtil.MemoryAllocationReport
public static enum MemoryUtil.MemoryAllocationReport.Aggregate
extends Enum<MemoryUtil.MemoryAllocationReport.Aggregate>
Specifies how to aggregate the reported allocations.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAllocations are aggregated over the whole process or thread.Allocations are aggregated based on the first stack trace element.The allocations are aggregated based on the full stack trace chain. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ALL
Allocations are aggregated over the whole process or thread. -
GROUP_BY_METHOD
Allocations are aggregated based on the first stack trace element. This will return an allocation aggregate per method/line number, regardless of how many different code paths lead to that specific method and line number. -
GROUP_BY_STACKTRACE
The allocations are aggregated based on the full stack trace chain.
-
-
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
-