public static enum NativeMemoryConfig.MemoryAllocatorType extends Enum<NativeMemoryConfig.MemoryAllocatorType>
Enum Constant and Description |
---|
POOLED
POOLED memory allocator: manage memory blocks in pool
|
STANDARD
STANDARD memory allocator: allocate/free memory using default OS memory manager
|
Modifier and Type | Method and Description |
---|---|
static NativeMemoryConfig.MemoryAllocatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NativeMemoryConfig.MemoryAllocatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeMemoryConfig.MemoryAllocatorType STANDARD
public static final NativeMemoryConfig.MemoryAllocatorType POOLED
public static NativeMemoryConfig.MemoryAllocatorType[] values()
for (NativeMemoryConfig.MemoryAllocatorType c : NativeMemoryConfig.MemoryAllocatorType.values()) System.out.println(c);
public static NativeMemoryConfig.MemoryAllocatorType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023 Hazelcast, Inc.. All rights reserved.