All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.priv.bang.oldalbum.services.bean.LocaleBean Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
/*
 * Copyright 2023-2024 Steinar Bang
 *
 * 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.
 */
package no.priv.bang.oldalbum.services.bean;

import static java.util.Optional.ofNullable;

import java.util.Locale;

public record LocaleBean(String code, String displayLanguage) {

    public static Builder with() {
        return new Builder();
    }

    public static class Builder {
        private Locale locale;

        private Builder() {}

        public LocaleBean build() {
            String localeCode = ofNullable(this.locale).map(Object::toString).orElse(null);
            String displayLanguage = ofNullable(this.locale).map(l -> l.getDisplayLanguage(l)).orElse(null);
            return new LocaleBean(localeCode, displayLanguage);
        }

        public Builder locale(Locale locale) {
            this.locale = locale;
            return this;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy