1 /* GENERATED SOURCE. DO NOT MODIFY. */ 2 // © 2018 and later: Unicode, Inc. and others. 3 // License & terms of use: http://www.unicode.org/copyright.html#License 4 package ohos.global.icu.impl.number; 5 6 import ohos.global.icu.impl.StandardPlural; 7 import ohos.global.icu.impl.number.Modifier.Signum; 8 9 /** 10 * This is *not* a modifier; rather, it is an object that can return modifiers 11 * based on given parameters. 12 * 13 * @author sffc 14 * @hide exposed on OHOS 15 */ 16 public interface ModifierStore { 17 /** 18 * Returns a Modifier with the given parameters (best-effort). 19 */ getModifier(Signum signum, StandardPlural plural)20 Modifier getModifier(Signum signum, StandardPlural plural); 21 } 22