Home | History | Annotate | Download | only in number
      1 //  2017 and later: Unicode, Inc. and others.
      2 // License & terms of use: http://www.unicode.org/copyright.html#License
      3 package com.ibm.icu.impl.number;
      4 
      5 /**
      6  * An interface used by compact notation and scientific notation to choose a multiplier while rounding.
      7  */
      8 public interface MultiplierProducer {
      9     int getMultiplier(int magnitude);
     10 }
     11