Examples of DBInteger


Examples of net.pleso.framework.client.dal.db.types.DBInteger

   * Constructor
   * @param value integer enumeration value
   * @param caption caption of enumeration
   */
  protected DBIntEnum(int value, String caption) {
    this(new DBInteger(new Integer(value)), caption);
  }
View Full Code Here

Examples of net.pleso.framework.client.dal.db.types.DBInteger

  /**
   * Constructor
   * @param nullCaption caption of null value in enum
   */
  protected DBIntEnum(String nullCaption) {
    this(new DBInteger(), nullCaption);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.