@Override public void read(org.apache.thrift.protocol.TProtocol prot, TUserDefinedTypeEntry struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; struct.typeClassName = iprot.readString(); struct.setTypeClassNameIsSet(true); }
public void read(org.apache.thrift.protocol.TProtocol iprot, TUserDefinedTypeEntry 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_CLASS_NAME if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.typeClassName = iprot.readString(); struct.setTypeClassNameIsSet(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(); }
@Override public int compareTo(TUserDefinedTypeEntry other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = Boolean.valueOf(isSetTypeClassName()).compareTo(other.isSetTypeClassName()); if (lastComparison != 0) { return lastComparison; } if (isSetTypeClassName()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.typeClassName, other.typeClassName); if (lastComparison != 0) { return lastComparison; } } return 0; }
public boolean equals(TUserDefinedTypeEntry that) { if (that == null) return false; boolean this_present_typeClassName = true && this.isSetTypeClassName(); boolean that_present_typeClassName = true && that.isSetTypeClassName(); if (this_present_typeClassName || that_present_typeClassName) { if (!(this_present_typeClassName && that_present_typeClassName)) return false; if (!this.typeClassName.equals(that.typeClassName)) return false; } return true; }
public void write(org.apache.thrift.protocol.TProtocol oprot, TUserDefinedTypeEntry struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.typeClassName != null) { oprot.writeFieldBegin(TYPE_CLASS_NAME_FIELD_DESC); oprot.writeString(struct.typeClassName); oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); }
/** Performs a deep copy on <i>other</i>. */ public TUserDefinedTypeEntry(TUserDefinedTypeEntry other) { if (other.isSetTypeClassName()) { this.typeClassName = other.typeClassName; } }