public enum PersistentMemoryMode extends Enum<PersistentMemoryMode>
| Enum Constant and Description | 
|---|
| MOUNTEDThe persistent memory is mounted into the file system (aka FS DAX mode). | 
| SYSTEM_MEMORYThe persistent memory is onlined as system memory (aka KMEM DAX mode). | 
| Modifier and Type | Method and Description | 
|---|---|
| static PersistentMemoryMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PersistentMemoryMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PersistentMemoryMode MOUNTED
public static final PersistentMemoryMode SYSTEM_MEMORY
public static PersistentMemoryMode[] values()
for (PersistentMemoryMode c : PersistentMemoryMode.values()) System.out.println(c);
public static PersistentMemoryMode 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.