/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.jtotus.common; import java.math.BigDecimal; /** * * @author house */ public class JtotusType { private String stringValue = null; private BigDecimal bigDecimalValue = null; // Prefer over float !!!! private char charType = 0; private float floatValue = 0.0f; private int intValue = 0; private long longValue = 0; }