public void write(org.apache.thrift.protocol.TProtocol oprot, Offset struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.type != null) { oprot.writeFieldBegin(TYPE_FIELD_DESC); oprot.writeI32(struct.type.getValue()); oprot.writeFieldEnd(); } oprot.writeFieldBegin(FIRST_FIELD_DESC); oprot.writeI64(struct.first); oprot.writeFieldEnd(); oprot.writeFieldBegin(LENGTH_FIELD_DESC); oprot.writeI32(struct.length); oprot.writeFieldEnd(); if (struct.xpath != null) { if (struct.isSetXpath()) { oprot.writeFieldBegin(XPATH_FIELD_DESC); oprot.writeString(struct.xpath); oprot.writeFieldEnd(); } } if (struct.content_form != null) { if (struct.isSetContent_form()) { oprot.writeFieldBegin(CONTENT_FORM_FIELD_DESC); oprot.writeString(struct.content_form); oprot.writeFieldEnd(); } } if (struct.value != null) { if (struct.isSetValue()) { oprot.writeFieldBegin(VALUE_FIELD_DESC); oprot.writeBinary(struct.value); oprot.writeFieldEnd(); } } oprot.writeFieldStop(); oprot.writeStructEnd(); }
public void read(org.apache.thrift.protocol.TProtocol iprot, Offset struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) { schemeField = iprot.readFieldBegin(); if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { break; } switch (schemeField.id) { case 1: // TYPE if (schemeField.type == org.apache.thrift.protocol.TType.I32) { struct.type = OffsetType.findByValue(iprot.readI32()); struct.setTypeIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // FIRST if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.first = iprot.readI64(); struct.setFirstIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // LENGTH if (schemeField.type == org.apache.thrift.protocol.TType.I32) { struct.length = iprot.readI32(); struct.setLengthIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 4: // XPATH if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.xpath = iprot.readString(); struct.setXpathIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 5: // CONTENT_FORM if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.content_form = iprot.readString(); struct.setContent_formIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 6: // VALUE if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.value = iprot.readBinary(); struct.setValueIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } iprot.readFieldEnd(); } iprot.readStructEnd(); // check for required fields of primitive type, which can't be checked in the validate method struct.validate(); }