Uses of Interface
me.a8kj.config.template.memory.DataMemory
Packages that use DataMemory
Package
Description
-
Uses of DataMemory in me.a8kj.config.builder
Methods in me.a8kj.config.builder with parameters of type DataMemoryModifier and TypeMethodDescriptionBasicConfigBuilder.memory(DataMemory<K> memory) Sets the memory storage implementation for holding the configuration data. -
Uses of DataMemory in me.a8kj.config.file
Methods in me.a8kj.config.file that return DataMemoryModifier and TypeMethodDescriptionConfigFile.memory()Retrieves the memory storage holding the configuration's loaded data. -
Uses of DataMemory in me.a8kj.config.file.impl
Methods in me.a8kj.config.file.impl that return DataMemoryModifier and TypeMethodDescriptionBasicConfigFile.memory()Returns the value of thememoryrecord component.Constructors in me.a8kj.config.file.impl with parameters of type DataMemoryModifierConstructorDescriptionBasicConfigFile(ConfigMeta meta, File file, DataMemory<K> memory) Creates an instance of aBasicConfigFilerecord class. -
Uses of DataMemory in me.a8kj.config.template.experimental.mapper
Subinterfaces of DataMemory in me.a8kj.config.template.experimental.mapperModifier and TypeInterfaceDescriptioninterfaceAn entity-aware extension ofDataMemorythat enables the storage and retrieval of complex domain objects using structured mapping logic.Classes in me.a8kj.config.template.experimental.mapper that implement DataMemoryModifier and TypeClassDescriptionclassAn implementation ofEntityAwareMemorythat integrates complex entity mapping with standard configuration memory management.Methods in me.a8kj.config.template.experimental.mapper with parameters of type DataMemoryModifier and TypeMethodDescription<T> Optional<T> BaseMapperOperator.load(DataMemory<String> memory, String path, Class<T> type) Loads and reconstructs an entity from the providedDataMemorybased on a specific path.<T> Optional<T> EntityLoader.load(DataMemory<String> memory, String path, Class<T> type) Loads and reconstructs an entity from the providedDataMemorybased on a specific path.<T> voidBaseMapperOperator.save(DataMemory<String> memory, String path, T entity) Serializes and saves an entity into the providedDataMemoryunder a specific path.<T> voidEntitySaver.save(DataMemory<String> memory, String path, T entity) Serializes and saves an entity into the providedDataMemoryunder a specific path. -
Uses of DataMemory in me.a8kj.config.template.memory
Methods in me.a8kj.config.template.memory with parameters of type DataMemoryModifier and TypeMethodDescriptionMemoryEntry.fetch(DataMemory<String> memory) Fetches the value associated with this entry from the provided memory source.MemoryEntry.fetchOrDefault(DataMemory<String> memory, T defaultValue) Fetches the value associated with this entry from the provided memory source.<T> TMemoryDataType.getValue(DataMemory<String> memory, String key) Executes the extraction strategy for the given memory and key. -
Uses of DataMemory in me.a8kj.config.template.memory.impl
Subinterfaces of DataMemory in me.a8kj.config.template.memory.implModifier and TypeInterfaceDescriptioninterfaceAn extension ofDataMemorythat supports advanced retrieval usingMemoryEntry.Classes in me.a8kj.config.template.memory.impl that implement DataMemoryModifier and TypeClassDescriptionclassEnumDataMemory<E extends Enum<E>>An abstract implementation ofDataMemorythat uses anEnumMapas its internal storage.classA flexible, map-based implementation ofDataMemorythat uses aHashMapfor internal storage.classA specialized implementation ofDataMemorythat usesMemoryDataTypeas its keys.classA implementation ofPairedDataMemoryspecialized forStringkeys.classA standard string-keyed implementation ofPairedDataMemory.classVelocity-specific implementation ofGenericMapDataMemory. -
Uses of DataMemory in me.a8kj.util
Methods in me.a8kj.util with parameters of type DataMemoryModifier and TypeMethodDescriptionstatic voidFlattens a nestedMapinto a flat structure using dot-separated keys.MapStructureUtils.unflattenUnderPath(String path, DataMemory<String> memory) Extracts a nested map from a DataMemory under a specific path.