com.github.robtimus.obfuscation.spring.boot.autoconfigure.Messages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obfuscation-spring-boot-starter Show documentation
Show all versions of obfuscation-spring-boot-starter Show documentation
Spring Boot starter for obfuscation
/*
* Messages.java
* Copyright 2020 Rob Spoor
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// This file has been generated by i18n-maven-plugin
// (https://robtimus.github.io/i18n-maven-plugin/)
package com.github.robtimus.obfuscation.spring.boot.autoconfigure;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import java.util.ResourceBundle;
@SuppressWarnings("nls")
final class Messages {
private static final Map BUNDLES = new HashMap<>();
private Messages() {
throw new IllegalStateException("cannot create instances of " + getClass().getName());
}
private static synchronized ResourceBundle getResourceBundle(Locale locale) {
Locale l = nonNull(locale);
ResourceBundle bundle = BUNDLES.get(l);
if (bundle == null) {
bundle = ResourceBundle.getBundle("com.github.robtimus.obfuscation.spring.boot.autoconfigure.obfuscation-spring-boot-starter-autoconfigure", l);
BUNDLES.put(l, bundle);
}
return bundle;
}
private static String getString(Locale locale, String key) {
ResourceBundle bundle = getResourceBundle(locale);
return bundle.getString(key);
}
private static Locale nonNull(Locale locale) {
return locale != null ? locale : Locale.getDefault(Locale.Category.FORMAT);
}
static final ObfuscatorProperties_ ObfuscatorProperties = new ObfuscatorProperties_();
static final class ObfuscatorProperties_ {
private ObfuscatorProperties_() {
super();
}
final NoObfuscationModes_ noObfuscationModes = new NoObfuscationModes_();
static final class NoObfuscationModes_ {
private NoObfuscationModes_() {
super();
}
String get() {
return get(null);
}
String get(Locale locale) {
Locale l = nonNull(locale);
return getString(l, "ObfuscatorProperties.noObfuscationModes");
}
}
final MultipleObfuscationModes_ multipleObfuscationModes = new MultipleObfuscationModes_();
static final class MultipleObfuscationModes_ {
private MultipleObfuscationModes_() {
super();
}
String get() {
return get(null);
}
String get(Locale locale) {
Locale l = nonNull(locale);
return getString(l, "ObfuscatorProperties.multipleObfuscationModes");
}
}
final MissingProperty_ missingProperty = new MissingProperty_();
static final class MissingProperty_ {
private MissingProperty_() {
super();
}
String get(Object arg) {
return get(null, arg);
}
String get(Locale locale, Object arg) {
Locale l = nonNull(locale);
String s = getString(l, "ObfuscatorProperties.missingProperty");
return String.format(l, s, arg);
}
}
}
static final ObfuscatorPropertiesCondition_ ObfuscatorPropertiesCondition = new ObfuscatorPropertiesCondition_();
static final class ObfuscatorPropertiesCondition_ {
private ObfuscatorPropertiesCondition_() {
super();
}
final NoMatch_ noMatch = new NoMatch_();
static final class NoMatch_ {
private NoMatch_() {
super();
}
String get(Object arg) {
return get(null, arg);
}
String get(Locale locale, Object arg) {
Locale l = nonNull(locale);
String s = getString(l, "ObfuscatorPropertiesCondition.noMatch");
return String.format(l, s, arg);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy