com.ibm.icu.message2.TextSelectorFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icu4j Show documentation
Show all versions of icu4j Show documentation
International Component for Unicode for Java (ICU4J) is a mature, widely used Java library
providing Unicode and Globalization support
// © 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);
}
}
}