下面列出了怎么用com.typesafe.config.ConfigMergeable的API类实例代码及写法,或者点击链接到github查看源代码。
@Override
public Config withFallback(ConfigMergeable other) {
return c.withFallback(other);
}
@Override
public Config withFallback(final ConfigMergeable other) {
return serviceScopedConfig.withFallback(other);
}
@Override
public Config withFallback(final ConfigMergeable other) {
return new DefaultScopedConfig(config.withFallback(other), configPath);
}
@Override
public Config withFallback(final ConfigMergeable other) {
return baseConfig.withFallback(other);
}
@Override
public Config withFallback(ConfigMergeable other) {
return config.withFallback(other);
}