Package one.microstream.cache
Class CacheConfigurationParser.Default
java.lang.Object
one.microstream.cache.CacheConfigurationParser.Default
- All Implemented Interfaces:
CacheConfigurationParser
,CacheConfigurationPropertyNames
- Enclosing interface:
- CacheConfigurationParser
public static class CacheConfigurationParser.Default extends Object implements CacheConfigurationParser, CacheConfigurationPropertyNames
-
Nested Class Summary
Nested classes/interfaces inherited from interface one.microstream.cache.CacheConfigurationParser
CacheConfigurationParser.Default
-
Field Summary
Fields inherited from interface one.microstream.cache.CacheConfigurationPropertyNames
CACHE_LOADER_FACTORY, CACHE_WRITER_FACTORY, EVICTION_MANAGER_FACTORY, EXPIRY_POLICY_FACTORY, KEY_TYPE, MANAGEMENT_ENABLED, READ_THROUGH, STATISTICS_ENABLED, STORAGE_CONFIGURATION_RESOURCE_NAME, STORE_BY_VALUE, VALUE_TYPE, WRITE_THROUGH
-
Constructor Summary
Constructors Constructor Description Default()
-
Method Summary
Modifier and Type Method Description CacheConfiguration<?,?>
parse(String data)
Parses the configuration from the given input.<K, V> CacheConfiguration<K,V>
parse(String data, Class<K> keyType, Class<V> valueType)
Parses the configuration from the given input.
-
Constructor Details
-
Default
public Default()
-
-
Method Details
-
parse
Description copied from interface:CacheConfigurationParser
Parses the configuration from the given input.- Specified by:
parse
in interfaceCacheConfigurationParser
- Parameters:
data
- the input to parse- Returns:
- the parsed configuration
-
parse
Description copied from interface:CacheConfigurationParser
Parses the configuration from the given input.- Specified by:
parse
in interfaceCacheConfigurationParser
- Parameters:
data
- the input to parsekeyType
- the key typevalueType
- the value type- Returns:
- the parsed configuration
-