Subversion Repositories SmartDukaan

Rev

Rev 483 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

/**
 * Autogenerated by Thrift
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 */
package in.shop2020.model.v1.order;

import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
import java.util.HashSet;
import java.util.EnumSet;
import java.util.Collections;
import java.util.BitSet;
import java.util.Arrays;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import org.apache.thrift.*;
import org.apache.thrift.meta_data.*;
import org.apache.thrift.protocol.*;

public class Alert implements TBase<Alert._Fields>, java.io.Serializable, Cloneable, Comparable<Alert> {
  private static final TStruct STRUCT_DESC = new TStruct("Alert");

  private static final TField ID_FIELD_DESC = new TField("id", TType.I64, (short)1);
  private static final TField TRANSACTION_ID_FIELD_DESC = new TField("transaction_id", TType.I64, (short)2);
  private static final TField TYPE_FIELD_DESC = new TField("type", TType.I64, (short)3);
  private static final TField TIME_SET_FIELD_DESC = new TField("time_set", TType.I64, (short)4);
  private static final TField COMMENT_FIELD_DESC = new TField("comment", TType.STRING, (short)5);
  private static final TField TIME_UNSET_FIELD_DESC = new TField("time_unset", TType.I64, (short)6);

  private long id;
  private long transaction_id;
  private long type;
  private long time_set;
  private String comment;
  private long time_unset;

  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
  public enum _Fields implements TFieldIdEnum {
    ID((short)1, "id"),
    TRANSACTION_ID((short)2, "transaction_id"),
    TYPE((short)3, "type"),
    TIME_SET((short)4, "time_set"),
    COMMENT((short)5, "comment"),
    TIME_UNSET((short)6, "time_unset");

    private static final Map<Integer, _Fields> byId = new HashMap<Integer, _Fields>();
    private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();

    static {
      for (_Fields field : EnumSet.allOf(_Fields.class)) {
        byId.put((int)field._thriftId, field);
        byName.put(field.getFieldName(), field);
      }
    }

    /**
     * Find the _Fields constant that matches fieldId, or null if its not found.
     */
    public static _Fields findByThriftId(int fieldId) {
      return byId.get(fieldId);
    }

    /**
     * Find the _Fields constant that matches fieldId, throwing an exception
     * if it is not found.
     */
    public static _Fields findByThriftIdOrThrow(int fieldId) {
      _Fields fields = findByThriftId(fieldId);
      if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
      return fields;
    }

    /**
     * Find the _Fields constant that matches name, or null if its not found.
     */
    public static _Fields findByName(String name) {
      return byName.get(name);
    }

    private final short _thriftId;
    private final String _fieldName;

    _Fields(short thriftId, String fieldName) {
      _thriftId = thriftId;
      _fieldName = fieldName;
    }

    public short getThriftFieldId() {
      return _thriftId;
    }

    public String getFieldName() {
      return _fieldName;
    }
  }

  // isset id assignments
  private static final int __ID_ISSET_ID = 0;
  private static final int __TRANSACTION_ID_ISSET_ID = 1;
  private static final int __TYPE_ISSET_ID = 2;
  private static final int __TIME_SET_ISSET_ID = 3;
  private static final int __TIME_UNSET_ISSET_ID = 4;
  private BitSet __isset_bit_vector = new BitSet(5);

  public static final Map<_Fields, FieldMetaData> metaDataMap = Collections.unmodifiableMap(new EnumMap<_Fields, FieldMetaData>(_Fields.class) {{
    put(_Fields.ID, new FieldMetaData("id", TFieldRequirementType.DEFAULT, 
        new FieldValueMetaData(TType.I64)));
    put(_Fields.TRANSACTION_ID, new FieldMetaData("transaction_id", TFieldRequirementType.DEFAULT, 
        new FieldValueMetaData(TType.I64)));
    put(_Fields.TYPE, new FieldMetaData("type", TFieldRequirementType.DEFAULT, 
        new FieldValueMetaData(TType.I64)));
    put(_Fields.TIME_SET, new FieldMetaData("time_set", TFieldRequirementType.DEFAULT, 
        new FieldValueMetaData(TType.I64)));
    put(_Fields.COMMENT, new FieldMetaData("comment", TFieldRequirementType.DEFAULT, 
        new FieldValueMetaData(TType.STRING)));
    put(_Fields.TIME_UNSET, new FieldMetaData("time_unset", TFieldRequirementType.DEFAULT, 
        new FieldValueMetaData(TType.I64)));
  }});

  static {
    FieldMetaData.addStructMetaDataMap(Alert.class, metaDataMap);
  }

  public Alert() {
  }

  public Alert(
    long id,
    long transaction_id,
    long type,
    long time_set,
    String comment,
    long time_unset)
  {
    this();
    this.id = id;
    setIdIsSet(true);
    this.transaction_id = transaction_id;
    setTransaction_idIsSet(true);
    this.type = type;
    setTypeIsSet(true);
    this.time_set = time_set;
    setTime_setIsSet(true);
    this.comment = comment;
    this.time_unset = time_unset;
    setTime_unsetIsSet(true);
  }

  /**
   * Performs a deep copy on <i>other</i>.
   */
  public Alert(Alert other) {
    __isset_bit_vector.clear();
    __isset_bit_vector.or(other.__isset_bit_vector);
    this.id = other.id;
    this.transaction_id = other.transaction_id;
    this.type = other.type;
    this.time_set = other.time_set;
    if (other.isSetComment()) {
      this.comment = other.comment;
    }
    this.time_unset = other.time_unset;
  }

  public Alert deepCopy() {
    return new Alert(this);
  }

  @Deprecated
  public Alert clone() {
    return new Alert(this);
  }

  public long getId() {
    return this.id;
  }

  public Alert setId(long id) {
    this.id = id;
    setIdIsSet(true);
    return this;
  }

  public void unsetId() {
    __isset_bit_vector.clear(__ID_ISSET_ID);
  }

  /** Returns true if field id is set (has been asigned a value) and false otherwise */
  public boolean isSetId() {
    return __isset_bit_vector.get(__ID_ISSET_ID);
  }

  public void setIdIsSet(boolean value) {
    __isset_bit_vector.set(__ID_ISSET_ID, value);
  }

  public long getTransaction_id() {
    return this.transaction_id;
  }

  public Alert setTransaction_id(long transaction_id) {
    this.transaction_id = transaction_id;
    setTransaction_idIsSet(true);
    return this;
  }

  public void unsetTransaction_id() {
    __isset_bit_vector.clear(__TRANSACTION_ID_ISSET_ID);
  }

  /** Returns true if field transaction_id is set (has been asigned a value) and false otherwise */
  public boolean isSetTransaction_id() {
    return __isset_bit_vector.get(__TRANSACTION_ID_ISSET_ID);
  }

  public void setTransaction_idIsSet(boolean value) {
    __isset_bit_vector.set(__TRANSACTION_ID_ISSET_ID, value);
  }

  public long getType() {
    return this.type;
  }

  public Alert setType(long type) {
    this.type = type;
    setTypeIsSet(true);
    return this;
  }

  public void unsetType() {
    __isset_bit_vector.clear(__TYPE_ISSET_ID);
  }

  /** Returns true if field type is set (has been asigned a value) and false otherwise */
  public boolean isSetType() {
    return __isset_bit_vector.get(__TYPE_ISSET_ID);
  }

  public void setTypeIsSet(boolean value) {
    __isset_bit_vector.set(__TYPE_ISSET_ID, value);
  }

  public long getTime_set() {
    return this.time_set;
  }

  public Alert setTime_set(long time_set) {
    this.time_set = time_set;
    setTime_setIsSet(true);
    return this;
  }

  public void unsetTime_set() {
    __isset_bit_vector.clear(__TIME_SET_ISSET_ID);
  }

  /** Returns true if field time_set is set (has been asigned a value) and false otherwise */
  public boolean isSetTime_set() {
    return __isset_bit_vector.get(__TIME_SET_ISSET_ID);
  }

  public void setTime_setIsSet(boolean value) {
    __isset_bit_vector.set(__TIME_SET_ISSET_ID, value);
  }

  public String getComment() {
    return this.comment;
  }

  public Alert setComment(String comment) {
    this.comment = comment;
    return this;
  }

  public void unsetComment() {
    this.comment = null;
  }

  /** Returns true if field comment is set (has been asigned a value) and false otherwise */
  public boolean isSetComment() {
    return this.comment != null;
  }

  public void setCommentIsSet(boolean value) {
    if (!value) {
      this.comment = null;
    }
  }

  public long getTime_unset() {
    return this.time_unset;
  }

  public Alert setTime_unset(long time_unset) {
    this.time_unset = time_unset;
    setTime_unsetIsSet(true);
    return this;
  }

  public void unsetTime_unset() {
    __isset_bit_vector.clear(__TIME_UNSET_ISSET_ID);
  }

  /** Returns true if field time_unset is set (has been asigned a value) and false otherwise */
  public boolean isSetTime_unset() {
    return __isset_bit_vector.get(__TIME_UNSET_ISSET_ID);
  }

  public void setTime_unsetIsSet(boolean value) {
    __isset_bit_vector.set(__TIME_UNSET_ISSET_ID, value);
  }

  public void setFieldValue(_Fields field, Object value) {
    switch (field) {
    case ID:
      if (value == null) {
        unsetId();
      } else {
        setId((Long)value);
      }
      break;

    case TRANSACTION_ID:
      if (value == null) {
        unsetTransaction_id();
      } else {
        setTransaction_id((Long)value);
      }
      break;

    case TYPE:
      if (value == null) {
        unsetType();
      } else {
        setType((Long)value);
      }
      break;

    case TIME_SET:
      if (value == null) {
        unsetTime_set();
      } else {
        setTime_set((Long)value);
      }
      break;

    case COMMENT:
      if (value == null) {
        unsetComment();
      } else {
        setComment((String)value);
      }
      break;

    case TIME_UNSET:
      if (value == null) {
        unsetTime_unset();
      } else {
        setTime_unset((Long)value);
      }
      break;

    }
  }

  public void setFieldValue(int fieldID, Object value) {
    setFieldValue(_Fields.findByThriftIdOrThrow(fieldID), value);
  }

  public Object getFieldValue(_Fields field) {
    switch (field) {
    case ID:
      return new Long(getId());

    case TRANSACTION_ID:
      return new Long(getTransaction_id());

    case TYPE:
      return new Long(getType());

    case TIME_SET:
      return new Long(getTime_set());

    case COMMENT:
      return getComment();

    case TIME_UNSET:
      return new Long(getTime_unset());

    }
    throw new IllegalStateException();
  }

  public Object getFieldValue(int fieldId) {
    return getFieldValue(_Fields.findByThriftIdOrThrow(fieldId));
  }

  /** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
  public boolean isSet(_Fields field) {
    switch (field) {
    case ID:
      return isSetId();
    case TRANSACTION_ID:
      return isSetTransaction_id();
    case TYPE:
      return isSetType();
    case TIME_SET:
      return isSetTime_set();
    case COMMENT:
      return isSetComment();
    case TIME_UNSET:
      return isSetTime_unset();
    }
    throw new IllegalStateException();
  }

  public boolean isSet(int fieldID) {
    return isSet(_Fields.findByThriftIdOrThrow(fieldID));
  }

  @Override
  public boolean equals(Object that) {
    if (that == null)
      return false;
    if (that instanceof Alert)
      return this.equals((Alert)that);
    return false;
  }

  public boolean equals(Alert that) {
    if (that == null)
      return false;

    boolean this_present_id = true;
    boolean that_present_id = true;
    if (this_present_id || that_present_id) {
      if (!(this_present_id && that_present_id))
        return false;
      if (this.id != that.id)
        return false;
    }

    boolean this_present_transaction_id = true;
    boolean that_present_transaction_id = true;
    if (this_present_transaction_id || that_present_transaction_id) {
      if (!(this_present_transaction_id && that_present_transaction_id))
        return false;
      if (this.transaction_id != that.transaction_id)
        return false;
    }

    boolean this_present_type = true;
    boolean that_present_type = true;
    if (this_present_type || that_present_type) {
      if (!(this_present_type && that_present_type))
        return false;
      if (this.type != that.type)
        return false;
    }

    boolean this_present_time_set = true;
    boolean that_present_time_set = true;
    if (this_present_time_set || that_present_time_set) {
      if (!(this_present_time_set && that_present_time_set))
        return false;
      if (this.time_set != that.time_set)
        return false;
    }

    boolean this_present_comment = true && this.isSetComment();
    boolean that_present_comment = true && that.isSetComment();
    if (this_present_comment || that_present_comment) {
      if (!(this_present_comment && that_present_comment))
        return false;
      if (!this.comment.equals(that.comment))
        return false;
    }

    boolean this_present_time_unset = true;
    boolean that_present_time_unset = true;
    if (this_present_time_unset || that_present_time_unset) {
      if (!(this_present_time_unset && that_present_time_unset))
        return false;
      if (this.time_unset != that.time_unset)
        return false;
    }

    return true;
  }

  @Override
  public int hashCode() {
    return 0;
  }

  public int compareTo(Alert other) {
    if (!getClass().equals(other.getClass())) {
      return getClass().getName().compareTo(other.getClass().getName());
    }

    int lastComparison = 0;
    Alert typedOther = (Alert)other;

    lastComparison = Boolean.valueOf(isSetId()).compareTo(isSetId());
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = TBaseHelper.compareTo(id, typedOther.id);
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = Boolean.valueOf(isSetTransaction_id()).compareTo(isSetTransaction_id());
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = TBaseHelper.compareTo(transaction_id, typedOther.transaction_id);
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = Boolean.valueOf(isSetType()).compareTo(isSetType());
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = TBaseHelper.compareTo(type, typedOther.type);
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = Boolean.valueOf(isSetTime_set()).compareTo(isSetTime_set());
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = TBaseHelper.compareTo(time_set, typedOther.time_set);
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = Boolean.valueOf(isSetComment()).compareTo(isSetComment());
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = TBaseHelper.compareTo(comment, typedOther.comment);
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = Boolean.valueOf(isSetTime_unset()).compareTo(isSetTime_unset());
    if (lastComparison != 0) {
      return lastComparison;
    }
    lastComparison = TBaseHelper.compareTo(time_unset, typedOther.time_unset);
    if (lastComparison != 0) {
      return lastComparison;
    }
    return 0;
  }

  public void read(TProtocol iprot) throws TException {
    TField field;
    iprot.readStructBegin();
    while (true)
    {
      field = iprot.readFieldBegin();
      if (field.type == TType.STOP) { 
        break;
      }
      _Fields fieldId = _Fields.findByThriftId(field.id);
      if (fieldId == null) {
        TProtocolUtil.skip(iprot, field.type);
      } else {
        switch (fieldId) {
          case ID:
            if (field.type == TType.I64) {
              this.id = iprot.readI64();
              setIdIsSet(true);
            } else { 
              TProtocolUtil.skip(iprot, field.type);
            }
            break;
          case TRANSACTION_ID:
            if (field.type == TType.I64) {
              this.transaction_id = iprot.readI64();
              setTransaction_idIsSet(true);
            } else { 
              TProtocolUtil.skip(iprot, field.type);
            }
            break;
          case TYPE:
            if (field.type == TType.I64) {
              this.type = iprot.readI64();
              setTypeIsSet(true);
            } else { 
              TProtocolUtil.skip(iprot, field.type);
            }
            break;
          case TIME_SET:
            if (field.type == TType.I64) {
              this.time_set = iprot.readI64();
              setTime_setIsSet(true);
            } else { 
              TProtocolUtil.skip(iprot, field.type);
            }
            break;
          case COMMENT:
            if (field.type == TType.STRING) {
              this.comment = iprot.readString();
            } else { 
              TProtocolUtil.skip(iprot, field.type);
            }
            break;
          case TIME_UNSET:
            if (field.type == TType.I64) {
              this.time_unset = iprot.readI64();
              setTime_unsetIsSet(true);
            } else { 
              TProtocolUtil.skip(iprot, field.type);
            }
            break;
        }
        iprot.readFieldEnd();
      }
    }
    iprot.readStructEnd();
    validate();
  }

  public void write(TProtocol oprot) throws TException {
    validate();

    oprot.writeStructBegin(STRUCT_DESC);
    oprot.writeFieldBegin(ID_FIELD_DESC);
    oprot.writeI64(this.id);
    oprot.writeFieldEnd();
    oprot.writeFieldBegin(TRANSACTION_ID_FIELD_DESC);
    oprot.writeI64(this.transaction_id);
    oprot.writeFieldEnd();
    oprot.writeFieldBegin(TYPE_FIELD_DESC);
    oprot.writeI64(this.type);
    oprot.writeFieldEnd();
    oprot.writeFieldBegin(TIME_SET_FIELD_DESC);
    oprot.writeI64(this.time_set);
    oprot.writeFieldEnd();
    if (this.comment != null) {
      oprot.writeFieldBegin(COMMENT_FIELD_DESC);
      oprot.writeString(this.comment);
      oprot.writeFieldEnd();
    }
    oprot.writeFieldBegin(TIME_UNSET_FIELD_DESC);
    oprot.writeI64(this.time_unset);
    oprot.writeFieldEnd();
    oprot.writeFieldStop();
    oprot.writeStructEnd();
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder("Alert(");
    boolean first = true;

    sb.append("id:");
    sb.append(this.id);
    first = false;
    if (!first) sb.append(", ");
    sb.append("transaction_id:");
    sb.append(this.transaction_id);
    first = false;
    if (!first) sb.append(", ");
    sb.append("type:");
    sb.append(this.type);
    first = false;
    if (!first) sb.append(", ");
    sb.append("time_set:");
    sb.append(this.time_set);
    first = false;
    if (!first) sb.append(", ");
    sb.append("comment:");
    if (this.comment == null) {
      sb.append("null");
    } else {
      sb.append(this.comment);
    }
    first = false;
    if (!first) sb.append(", ");
    sb.append("time_unset:");
    sb.append(this.time_unset);
    first = false;
    sb.append(")");
    return sb.toString();
  }

  public void validate() throws TException {
    // check for required fields
  }

}