@Override public void write(org.apache.thrift.protocol.TProtocol prot, TConfigInfo struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; BitSet optionals = new BitSet(); if (struct.isSetGroup()) { optionals.set(0); } if (struct.isSetName()) { optionals.set(1); } if (struct.isSetValue()) { optionals.set(2); } oprot.writeBitSet(optionals, 3); if (struct.isSetGroup()) { oprot.writeString(struct.group); } if (struct.isSetName()) { oprot.writeString(struct.name); } if (struct.isSetValue()) { oprot.writeString(struct.value); } }
public boolean equals(TConfigInfo that) { if (that == null) return false; boolean this_present_group = true && this.isSetGroup(); boolean that_present_group = true && that.isSetGroup(); if (this_present_group || that_present_group) { if (!(this_present_group && that_present_group)) return false; if (!this.group.equals(that.group)) return false; } boolean this_present_name = true && this.isSetName(); boolean that_present_name = true && that.isSetName(); if (this_present_name || that_present_name) { if (!(this_present_name && that_present_name)) return false; if (!this.name.equals(that.name)) return false; } boolean this_present_value = true && this.isSetValue(); boolean that_present_value = true && that.isSetValue(); if (this_present_value || that_present_value) { if (!(this_present_value && that_present_value)) return false; if (!this.value.equals(that.value)) return false; } return true; }
/** Performs a deep copy on <i>other</i>. */ public TConfigInfo(TConfigInfo other) { if (other.isSetGroup()) { this.group = other.group; } if (other.isSetName()) { this.name = other.name; } if (other.isSetValue()) { this.value = other.value; } }
public int compareTo(TConfigInfo other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; TConfigInfo typedOther = (TConfigInfo) other; lastComparison = Boolean.valueOf(isSetGroup()).compareTo(typedOther.isSetGroup()); if (lastComparison != 0) { return lastComparison; } if (isSetGroup()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.group, typedOther.group); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetName()).compareTo(typedOther.isSetName()); if (lastComparison != 0) { return lastComparison; } if (isSetName()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.name, typedOther.name); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetValue()).compareTo(typedOther.isSetValue()); if (lastComparison != 0) { return lastComparison; } if (isSetValue()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, typedOther.value); if (lastComparison != 0) { return lastComparison; } } return 0; }