read method
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 OLD_SPACE_NAME:
if (field.type == TType.STRING) {
this.old_space_name = iprot.readBinary();
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case NEW_SPACE_NAME:
if (field.type == TType.STRING) {
this.new_space_name = iprot.readBinary();
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case IF_NOT_EXISTS:
if (field.type == TType.BOOL) {
this.if_not_exists = iprot.readBool();
this.__isset_if_not_exists = 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();
}