@Override public int compareTo(State other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = Boolean.valueOf(isSetBase()).compareTo(other.isSetBase()); if (lastComparison != 0) { return lastComparison; } if (isSetBase()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.base, other.base); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetState()).compareTo(other.isSetState()); if (lastComparison != 0) { return lastComparison; } if (isSetState()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.state, other.state); if (lastComparison != 0) { return lastComparison; } } return 0; }
/** Performs a deep copy on <i>other</i>. */ public State(State other) { if (other.isSetBase()) { this.base = new ezbake.query.intents.base.BaseContext(other.base); } if (other.isSetState()) { this.state = other.state; } }
@Override public void read(org.apache.thrift.protocol.TProtocol prot, State struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; struct.base = new ezbake.query.intents.base.BaseContext(); struct.base.read(iprot); struct.setBaseIsSet(true); struct.state = ObjectState.findByValue(iprot.readI32()); struct.setStateIsSet(true); }
public boolean equals(State that) { if (that == null) return false; boolean this_present_base = true && this.isSetBase(); boolean that_present_base = true && that.isSetBase(); if (this_present_base || that_present_base) { if (!(this_present_base && that_present_base)) return false; if (!this.base.equals(that.base)) return false; } boolean this_present_state = true && this.isSetState(); boolean that_present_state = true && that.isSetState(); if (this_present_state || that_present_state) { if (!(this_present_state && that_present_state)) return false; if (!this.state.equals(that.state)) return false; } return true; }
public void read(org.apache.thrift.protocol.TProtocol iprot, State 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: // BASE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.base = new ezbake.query.intents.base.BaseContext(); struct.base.read(iprot); struct.setBaseIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // STATE if (schemeField.type == org.apache.thrift.protocol.TType.I32) { struct.state = ObjectState.findByValue(iprot.readI32()); struct.setStateIsSet(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(); }
public void write(org.apache.thrift.protocol.TProtocol oprot, State struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.base != null) { oprot.writeFieldBegin(BASE_FIELD_DESC); struct.base.write(oprot); oprot.writeFieldEnd(); } if (struct.state != null) { oprot.writeFieldBegin(STATE_FIELD_DESC); oprot.writeI32(struct.state.getValue()); oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); }