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

com.ibm.icu.message2.TextSelectorFactory Maven / Gradle / Ivy

The newest version!
// © 2022 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html

package com.ibm.icu.message2;

import java.util.Locale;
import java.util.Map;


/**
 * Creates a {@link Selector} doing literal selection, similar to {exp, select}
 * in {@link com.ibm.icu.text.MessageFormat}.
 */
class TextSelectorFactory implements SelectorFactory {

    /**
     * {@inheritDoc}
     */
    @Override
    public Selector createSelector(Locale locale, Map fixedOptions) {
        return new TextSelector();
    }

    private static class TextSelector implements Selector {
        /**
         * {@inheritDoc}
         */
        @Override
        public boolean matches(Object value, String key, Map variableOptions) {
            if ("*".equals(key)) {
                return true;
            }
            return key.equals(value);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy