Package com.ibm.icu.message2
Interface Selector
-
@Deprecated public interface SelectorDeprecated.This API is for technology preview only.The interface that must be implemented by all selectors that can be used fromMessageFormatter.Selectors are used to choose between different message variants, similar to
plural,selectordinal, andselectinMessageFormat.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanmatches(java.lang.Object value, java.lang.String key, java.util.Map<java.lang.String,java.lang.Object> variableOptions)Deprecated.This API is for technology preview only.
-
-
-
Method Detail
-
matches
@Deprecated boolean matches(java.lang.Object value, java.lang.String key, java.util.Map<java.lang.String,java.lang.Object> variableOptions)Deprecated.This API is for technology preview only.A method that is invoked for the object to match and each key.For example an English plural
matcheswould returntrueformatches(1, "1"),matches(1, "one"), andmatches(1, "*").- Parameters:
value- the value to select on.key- the key to test for matching.variableOptions- options that are not know at build time.- Returns:
- the formatted string.
-
-