@Documented
@Retention(value=SOURCE)
@Target(value=METHOD)
public @interface Mantissa
Mantissa format for prices represent the value as a whole number. So a price of 1.2306 will
instead be 1230600000 (that is 1.2306 * 10^9)
Mantissa format for quantities represent the quantity as a whole number. So a quantity of 1500000.5 will instead
be 150000050000 (that is 1500000.5 * 10^5)