com.ibm.commerce.price.utils

Class QuantityAmount



  • public class QuantityAmount
    extends UnitAmount
    A quantity amount.
    • Constructor Summary

      Constructors 
      Constructor and Description
      QuantityAmount(double aValue, java.lang.String aQuantityUnit)
      Constructs a quantity amount from a numeric value and quantity unit.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getQuantityUnit()
      Get the unit of the quantity amount.
      double getValue()
      Get the numeric value of the quantity amount.
      void setValue(double aValue)
      Set the numeric value of the quantity amount.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • QuantityAmount

        public QuantityAmount(double aValue,
                              java.lang.String aQuantityUnit)
        Constructs a quantity amount from a numeric value and quantity unit.
        Parameters:
        aValue - the numeric value of the quantity amount.
        aQuantityUnit - the quantity unit.
    • Method Detail

      • getQuantityUnit

        public java.lang.String getQuantityUnit()
        Get the unit of the quantity amount.
        Returns:
        the quantity unit.
      • getValue

        public double getValue()
        Get the numeric value of the quantity amount.
        Returns:
        the value.
      • setValue

        public void setValue(double aValue)
        Set the numeric value of the quantity amount.
        Parameters:
        aValue - new value.