35363738394041
* Constructor * @param value integer enumeration value * @param caption caption of enumeration */ protected DBIntEnum(int value, String caption) { this(new DBInteger(new Integer(value)), caption); }
67686970717273
/** * Constructor * @param nullCaption caption of null value in enum */ protected DBIntEnum(String nullCaption) { this(new DBInteger(), nullCaption); }