read method

void read(
  1. TProtocol iprot
)
override

Reads the TObject from the given input protocol.

Implementation

read(TProtocol iprot) {
  TField field;
  iprot.readStructBegin();
  while (true) {
    field = iprot.readFieldBegin();
    if (field.type == TType.STOP) {
      break;
    }
    switch (field.id) {
      case YEAR:
        if (field.type == TType.I16) {
          this.year = iprot.readI16();
          this.__isset_year = true;
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case MONTH:
        if (field.type == TType.BYTE) {
          this.month = iprot.readByte();
          this.__isset_month = true;
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case DAY:
        if (field.type == TType.BYTE) {
          this.day = iprot.readByte();
          this.__isset_day = true;
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      default:
        TProtocolUtil.skip(iprot, field.type);
        break;
    }
    iprot.readFieldEnd();
  }
  iprot.readStructEnd();

  // check for required fields of primitive type, which can't be checked in the validate method
  validate();
}