7778798081828384858687
return holder; } public static NullableBitHolder getNullableBitHolder(boolean isNull, int value) { NullableBitHolder holder = new NullableBitHolder(); holder.isSet = isNull? 0 : 1; if (! isNull) { holder.value = value; }