Uses of Class
org.salespointframework.core.data.NumberValue

Packages that use NumberValue
org.salespointframework.core.data Provides interfaces for data management. 
org.salespointframework.core.data.filters Contains catalog and stock filters. 
org.salespointframework.core.data.interfaces   
 

Uses of NumberValue in org.salespointframework.core.data
 

Subclasses of NumberValue in org.salespointframework.core.data
 class DoubleValue
          A NumberValue that is based on a Double object.
 class IntegerValue
          A value that is based on an Integer object.
 

Methods in org.salespointframework.core.data that return NumberValue
 NumberValue CurrencyImpl.parse(java.lang.String s)
          Deprecated. Try to parse the given String as a currency value in the currency's associated format.
 NumberValue AbstractCurrency.parse(java.lang.String s)
          Try to interpret the given String according to the currency format of the specific currency.
 

Methods in org.salespointframework.core.data with parameters of type NumberValue
static java.lang.String AbstractCurrency.format(java.text.NumberFormat formatter, NumberValue nv)
          Convert the given value into a String representation according to the currency format of the specific currency.
 java.lang.String CurrencyImpl.toString(NumberValue nv)
          Deprecated. Return a String representation of the given NumberValue assuming it is a value given in the smallest unit of this currency.
 java.lang.String AbstractCurrency.toString(NumberValue nv)
          Convert the given value into a String representation according to the currency format of the specific currency.
 void MoneyBagImpl.transferMoney(MoneyBag mbDest, DataBasket db, NumberValue nvAmount)
          Tries to transfer money from this DataBasket into another one.
 

Uses of NumberValue in org.salespointframework.core.data.filters
 

Methods in org.salespointframework.core.data.filters that return NumberValue
 NumberValue CurrencyFilter.parse(java.lang.String s)
          Try to parse the given String as a Currency value using the source Currency.
 

Methods in org.salespointframework.core.data.filters with parameters of type NumberValue
 java.lang.String CurrencyFilter.toString(NumberValue nv)
          Convert the given value to its String representation using the source Currency.
 

Uses of NumberValue in org.salespointframework.core.data.interfaces
 

Methods in org.salespointframework.core.data.interfaces that return NumberValue
 NumberValue Currency.parse(java.lang.String s)
          Try to interpret the given String according to the currency format of the specific currency.
 

Methods in org.salespointframework.core.data.interfaces with parameters of type NumberValue
 java.lang.String Currency.toString(NumberValue nv)
          Convert the given value into a String representation according to the currency format of the specific currency.
 void MoneyBag.transferMoney(MoneyBag mbDest, DataBasket db, NumberValue nvAmount)
          Tries to transfer money from this DataBasket into another one.