/**
  * Get the value of the column 'paymentCompleteFlg' as classification name.
  *
  * @return The string of classification name. (NullAllowed: when the column value is null)
  */
 public String getPaymentCompleteFlgName() {
   CDef.Flg cdef = getPaymentCompleteFlgAsFlg();
   return cdef != null ? cdef.name() : null;
 }