com.typesafe.config.ConfigMergeable Java Examples
The following examples show how to use
com.typesafe.config.ConfigMergeable.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: NestedConfig.java From Bats with Apache License 2.0 | 4 votes |
@Override public Config withFallback(ConfigMergeable other) { return c.withFallback(other); }
Example #2
Source File: DittoServiceConfig.java From ditto with Eclipse Public License 2.0 | 4 votes |
@Override public Config withFallback(final ConfigMergeable other) { return serviceScopedConfig.withFallback(other); }
Example #3
Source File: DefaultScopedConfig.java From ditto with Eclipse Public License 2.0 | 4 votes |
@Override public Config withFallback(final ConfigMergeable other) { return new DefaultScopedConfig(config.withFallback(other), configPath); }
Example #4
Source File: ConfigWithFallback.java From ditto with Eclipse Public License 2.0 | 4 votes |
@Override public Config withFallback(final ConfigMergeable other) { return baseConfig.withFallback(other); }
Example #5
Source File: NestedConfig.java From dremio-oss with Apache License 2.0 | 4 votes |
@Override public Config withFallback(ConfigMergeable other) { return config.withFallback(other); }