Package com.ibm.icu.text
Interface PluralRules.IFixedDecimal
-
- All Known Implementing Classes:
PluralRules.FixedDecimal
- Enclosing class:
- PluralRules
@Deprecated public static interface PluralRules.IFixedDecimal
Deprecated.This API is ICU internal only.An interface to FixedDecimal, allowing for other implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description double
getPluralOperand(PluralRules.Operand operand)
Deprecated.This API is ICU internal only.boolean
isHasIntegerValue()
Deprecated.This API is ICU internal only.boolean
isInfinite()
Deprecated.This API is ICU internal only.boolean
isNaN()
Deprecated.This API is ICU internal only.
-
-
-
Method Detail
-
getPluralOperand
@Deprecated double getPluralOperand(PluralRules.Operand operand)
Deprecated.This API is ICU internal only.Returns the value corresponding to the specified operand (n, i, f, t, v, or w). If the operand is 'n', returns a double; otherwise, returns an integer.
-
isNaN
@Deprecated boolean isNaN()
Deprecated.This API is ICU internal only.
-
isInfinite
@Deprecated boolean isInfinite()
Deprecated.This API is ICU internal only.
-
isHasIntegerValue
@Deprecated boolean isHasIntegerValue()
Deprecated.This API is ICU internal only.Whether the number has no nonzero fraction digits.
-
-