示例#1
0
 @Override
 public void write(org.apache.thrift.protocol.TProtocol prot, sayHello_args struct)
     throws org.apache.thrift.TException {
   TTupleProtocol oprot = (TTupleProtocol) prot;
   BitSet optionals = new BitSet();
   if (struct.isSetName()) {
     optionals.set(0);
   }
   oprot.writeBitSet(optionals, 1);
   if (struct.isSetName()) {
     oprot.writeString(struct.name);
   }
 }
示例#2
0
    public boolean equals(sayHello_args that) {
      if (that == null) 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;
      }

      return true;
    }
示例#3
0
    @Override
    public int compareTo(sayHello_args other) {
      if (!getClass().equals(other.getClass())) {
        return getClass().getName().compareTo(other.getClass().getName());
      }

      int lastComparison = 0;

      lastComparison = Boolean.valueOf(isSetName()).compareTo(other.isSetName());
      if (lastComparison != 0) {
        return lastComparison;
      }
      if (isSetName()) {
        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.name, other.name);
        if (lastComparison != 0) {
          return lastComparison;
        }
      }
      return 0;
    }
示例#4
0
 /** Performs a deep copy on <i>other</i>. */
 public sayHello_args(sayHello_args other) {
   if (other.isSetName()) {
     this.name = other.name;
   }
 }