/**
  * Set the value of paymentCompleteFlg as the classification of Flg. <br>
  * (支払完了フラグ)PAYMENT_COMPLETE_FLG: {NotNull, INT(10), classification=Flg} <br>
  * general boolean classification for every flg-column
  *
  * @param cdef The instance of classification definition (as ENUM type). (NullAllowed: if null,
  *     null value is set to the column)
  */
 public void setPaymentCompleteFlgAsFlg(CDef.Flg cdef) {
   setPaymentCompleteFlg(cdef != null ? toNumber(cdef.code(), Integer.class) : null);
 }