@Override
 public void write(DataOutput out) throws IOException {
   tempSid.write(out);
   sid.write(out);
   versionNo.write(out);
   rgstDate.write(out);
   updtDate.write(out);
   duplicateFlg.write(out);
   textdata1.write(out);
   intdata2.write(out);
   datedata2.write(out);
 }
 @Override
 public void readFields(DataInput in) throws IOException {
   tempSid.readFields(in);
   sid.readFields(in);
   versionNo.readFields(in);
   rgstDate.readFields(in);
   updtDate.readFields(in);
   duplicateFlg.readFields(in);
   textdata1.readFields(in);
   intdata2.readFields(in);
   datedata2.readFields(in);
 }
 @Override
 public int hashCode() {
   int prime = 31;
   int result = 1;
   result += prime * result + tempSid.hashCode();
   result += prime * result + sid.hashCode();
   result += prime * result + versionNo.hashCode();
   result += prime * result + rgstDate.hashCode();
   result += prime * result + updtDate.hashCode();
   result += prime * result + duplicateFlg.hashCode();
   result += prime * result + textdata1.hashCode();
   result += prime * result + intdata2.hashCode();
   result += prime * result + datedata2.hashCode();
   return result;
 }
 @Override
 public void emit(LongOption option) throws IOException {
   startCell();
   if (emitNull(option)) {
     return;
   }
   lineBuffer.append(option.get());
 }
Example #5
0
 @Override
 public int hashCode() {
   int prime = 31;
   int result = 1;
   result = prime * result + key.hashCode();
   result = prime * result + count.hashCode();
   return result;
 }
 @Override
 public int hashCode() {
   int prime = 31;
   int result = 1;
   result = prime * result + tableName.hashCode();
   result = prime * result + jobflowSid.hashCode();
   return result;
 }
Example #7
0
 @Override
 public void readFields(DataInput in) throws IOException {
   sid.readFields(in);
   value.readFields(in);
   string.readFields(in);
   lastUpdateTime.readFields(in);
   jobflowSid.readFields(in);
   cacheFileSid.readFields(in);
 }
Example #8
0
 @Override
 public void write(DataOutput out) throws IOException {
   sid.write(out);
   value.write(out);
   string.write(out);
   lastUpdateTime.write(out);
   jobflowSid.write(out);
   cacheFileSid.write(out);
 }
Example #9
0
 @SuppressWarnings("deprecation")
 private void fill0(LongOption option, boolean doRecover) throws CsvFormatException {
   if (lineBuffer.hasRemaining()) {
     try {
       long value = Long.parseLong(lineBuffer.toString());
       option.modify(value);
     } catch (NumberFormatException e) {
       if (doRecover && trimWhitespaces()) {
         fill0(option, false);
         return;
       }
       throw new CsvFormatException(
           createStatusInLine(Reason.INVALID_CELL_FORMAT, "long value"), e);
     }
   } else {
     option.setNull();
   }
 }
Example #10
0
 @Override
 public int hashCode() {
   int prime = 31;
   int result = 1;
   result += prime * result + sid.hashCode();
   result += prime * result + value.hashCode();
   result += prime * result + string.hashCode();
   result += prime * result + lastUpdateTime.hashCode();
   result += prime * result + jobflowSid.hashCode();
   result += prime * result + cacheFileSid.hashCode();
   return result;
 }
 @Override
 public void readFields(DataInput in) throws IOException {
   tableName.readFields(in);
   jobflowSid.readFields(in);
 }
 @Override
 public void write(DataOutput out) throws IOException {
   tableName.write(out);
   jobflowSid.write(out);
 }
Example #13
0
 @Override
 public void readFields(DataInput in) throws IOException {
   key.readFields(in);
   count.readFields(in);
 }
Example #14
0
 @Override
 public void write(DataOutput out) throws IOException {
   key.write(out);
   count.write(out);
 }