C - the "self"-type of this Config@ParametersAreNonnullByDefault public class BaseConfig<C extends BaseConfig<C>> extends Object implements Config
Config that creates and manages common configuration that are available for all back-end
 implementations. It also provides all methods for building and querying a configuration.
 All features are all optional: configuration can be created using all or none of them.
| Modifier and Type | Field and Description | 
|---|---|
| static String | BASE_PREFIXThe base prefix for all internal options key related to the NeoEMF behavior. | 
| Constructor and Description | 
|---|
| BaseConfig()Constructs a new  BaseConfigwith default settings. | 
| Modifier and Type | Method and Description | 
|---|---|
| C | addListener(StoreListener listener)Adds a store listener in this configuration. | 
| <T> C | addOption(String key,
         T value)Adds a key/value in this configuration. | 
| C | addStore(Store store)Adds a feature defined by the given  storein this configuration. | 
| C | autoSave()Adds the  autoSavefeature in this configuration. | 
| C | autoSave(long chunk)Adds the  autoSavefeature, with a definedchunk, in this configuration. | 
| C | cacheContainers()Adds the  cache-containersfeature in this configuration. | 
| C | cacheFeatures()Adds the  cache-featuresfeature in this configuration. | 
| C | cacheMetaClasses()Adds the  cache-metaclassesfeature in this configuration. | 
| C | cacheSizes()Adds the  cache-sizesfeature in this configuration. | 
| protected static String | createKey(String... segments)Creates a new key from the given  segments. | 
| String | getMapping()Returns the defined mapping. | 
| String | getName()Returns the name of the  BackendFactoryassociated with this configuration. | 
| Map<String,?> | getOptions()Returns all defined options. | 
| Set<Store> | getStores()Returns a set of all defined  Store. | 
| String | getVariant()Returns the variant of the  BackendFactorybinding. | 
| protected Predicate<String> | isPersistentKey()Returns a  Predicateused to filter the options to be saved in a configuration file, in order to retrieve
 them in a future execution. | 
| protected Predicate<String> | isReadOnlyKey()Returns a  Predicateused to filter read-only keys. | 
| C | log()Adds the  logfeature in this configuration. | 
| C | log(Level level)Adds the  logfeature, with a definedlevel, in this configuration. | 
| C | merge(ImmutableConfig config)Merges the given  configin this configuration. | 
| C | merge(Map<String,?> map)Merges the given  mapin this configuration. | 
| C | readOnly()Adds the  read-onlyfeature in this configuration. | 
| C | recordStats(StoreStats stats)Adds the  statsfeature in this configuration. | 
| void | save(Path directory)Saves this configuration in the  directory. | 
| C | setMapping(String mappingType)Defines the mapping to use for the created  Backend. | 
| protected C | setMappingWithCheck(String mappingType,
                   boolean checkConflict)Defines the mapping to use for the created  Backend. | 
| Map<String,?> | toMap()Returns a immutable map view of this configuration. | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitexists, forName, forScheme, loadgetOption, getOptions, hasOption, isReadOnlypublic static final String BASE_PREFIX
public BaseConfig()
BaseConfig with default settings.
 
 NOTE: This implementation is intended to configure a Store'
 chain. The created configuration is not associated with any BackendFactory,
 so it cannot be used to configure a Backend. Use the specific
 implementation for this.
@Nonnull protected static String createKey(String... segments)
segments. Each segment will be delimited by a dot.segments - the segments of the keypublic void save(Path directory) throws IOException
ImmutableConfigdirectory.save in interface ImmutableConfigdirectory - the directory where to store the configurationIOException - if an I/O error occurs during the saving@Nonnull public final Map<String,?> toMap()
ImmutableConfigtoMap in interface ImmutableConfigResource.load(Map), 
Resource.save(Map)@Nonnull public String getName()
ImmutableConfigBackendFactory associated with this configuration.getName in interface ImmutableConfigBackendFactory.name()@Nonnull public String getVariant()
ImmutableConfigBackendFactory binding.getVariant in interface ImmutableConfig@Nonnull public String getMapping()
ImmutableConfiggetMapping in interface ImmutableConfig@Nonnull public C setMapping(String mappingType)
ConfigBackend.setMapping in interface ConfigmappingType - the class name of the mapping to use@Nonnull public <T> C addOption(String key, T value)
Config@Nonnull public C addStore(Store store)
Configstore in this configuration.@Nonnull public C cacheFeatures()
Configcache-features feature in this configuration.cacheFeatures in interface Config@Nonnull public C cacheContainers()
Configcache-containers feature in this configuration.cacheContainers in interface Config@Nonnull public C cacheMetaClasses()
Configcache-metaclasses feature in this configuration.cacheMetaClasses in interface Config@Nonnull public C cacheSizes()
Configcache-sizes feature in this configuration.cacheSizes in interface Config@Nonnull public C readOnly()
Configread-only feature in this configuration.@Nonnull public C autoSave()
ConfigautoSave feature in this configuration.@Nonnull public C autoSave(long chunk)
ConfigautoSave feature, with a defined chunk, in this configuration.
 
 WARNING: When chunk is zero, the store will be saved at each call.
@Nonnull public C addListener(StoreListener listener)
ConfigaddListener in interface Configlistener - the sotre listener to add@Nonnull public C log()
Configlog feature in this configuration.@Nonnull public C log(Level level)
Configlog feature, with a defined level, in this configuration.@Nonnull public C recordStats(StoreStats stats)
Configstats feature in this configuration.recordStats in interface Configstats - the stats that will be updated@Nonnull public Map<String,?> getOptions()
ImmutableConfiggetOptions in interface ImmutableConfig@Nonnull public Set<Store> getStores()
ImmutableConfigStore.getStores in interface ImmutableConfig@Nonnull public C merge(Map<String,?> map)
Configmap in this configuration. All options defined in the map will be added to this
 configuration, with conflict checking.merge in interface Configmap - the map representation of this configurationImmutableConfig.toMap()@Nonnull public final C merge(ImmutableConfig config)
Configconfig in this configuration. All options defined in the config will be added to
 this configuration, with conflict checking.@Nonnull @OverridingMethodsMustInvokeSuper protected Predicate<String> isPersistentKey()
Predicate used to filter the options to be saved in a configuration file, in order to retrieve
 them in a future execution.
 By default, only the options related to a back-end are saved.
save(Path)@Nonnull @OverridingMethodsMustInvokeSuper protected Predicate<String> isReadOnlyKey()
Predicate used to filter read-only keys. These keys can not be modified after their first
 declaration.addOption(String, Object)@Nonnull protected final C setMappingWithCheck(String mappingType, boolean checkConflict)
Backend. If the mapping has
 already been defined and checkConflict == false, then it will be erased by the new.mappingType - the type name of the mapping to usecheckConflict - true if the mappingType must be compared with the current mapping to check
                      collisionCopyright © 2013–2019 Atlanmod. All rights reserved.