Rev 6821 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*** Autogenerated by Thrift Compiler (0.7.0)** DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING*/package in.shop2020.model.v1.inventory;import java.util.*;public class ItemStockPurchaseParams implements org.apache.thrift.TBase<ItemStockPurchaseParams, ItemStockPurchaseParams._Fields>, java.io.Serializable, Cloneable {private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("ItemStockPurchaseParams");private static final org.apache.thrift.protocol.TField ITEM_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("item_id", org.apache.thrift.protocol.TType.I64, (short) 1);private static final org.apache.thrift.protocol.TField NUM_OF_DAYS_STOCK_FIELD_DESC = new org.apache.thrift.protocol.TField("numOfDaysStock", org.apache.thrift.protocol.TType.I32, (short) 2);private static final org.apache.thrift.protocol.TField MIN_STOCK_LEVEL_FIELD_DESC = new org.apache.thrift.protocol.TField("minStockLevel", org.apache.thrift.protocol.TType.I64, (short) 3);private long item_id; // requiredprivate int numOfDaysStock; // requiredprivate long minStockLevel; // required/*** The set of fields this struct contains, along with convenience methods for finding and manipulating them.*/public enum _Fields implements org.apache.thrift.TFieldIdEnum {ITEM_ID((short) 1, "item_id"),NUM_OF_DAYS_STOCK((short) 2, "numOfDaysStock"),MIN_STOCK_LEVEL((short) 3, "minStockLevel");private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();static {for (_Fields field : EnumSet.allOf(_Fields.class)) {byName.put(field.getFieldName(), field);}}/*** Find the _Fields constant that matches fieldId, or null if its not found.*/public static _Fields findByThriftId(int fieldId) {switch(fieldId) {case 1: // ITEM_IDreturn ITEM_ID;case 2: // NUM_OF_DAYS_STOCKreturn NUM_OF_DAYS_STOCK;case 3: // MIN_STOCK_LEVELreturn MIN_STOCK_LEVEL;default:return null;}}/*** 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 assignmentsprivate static final int __ITEM_ID_ISSET_ID = 0;private static final int __NUMOFDAYSSTOCK_ISSET_ID = 1;private static final int __MINSTOCKLEVEL_ISSET_ID = 2;private BitSet __isset_bit_vector = new BitSet(3);public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;static {Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);tmpMap.put(_Fields.ITEM_ID, new org.apache.thrift.meta_data.FieldMetaData("item_id", org.apache.thrift.TFieldRequirementType.DEFAULT,new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));tmpMap.put(_Fields.NUM_OF_DAYS_STOCK, new org.apache.thrift.meta_data.FieldMetaData("numOfDaysStock", org.apache.thrift.TFieldRequirementType.DEFAULT,new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));tmpMap.put(_Fields.MIN_STOCK_LEVEL, new org.apache.thrift.meta_data.FieldMetaData("minStockLevel", org.apache.thrift.TFieldRequirementType.DEFAULT,new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));metaDataMap = Collections.unmodifiableMap(tmpMap);org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(ItemStockPurchaseParams.class, metaDataMap);}public ItemStockPurchaseParams() {}public ItemStockPurchaseParams(long item_id,int numOfDaysStock,long minStockLevel) {this();this.item_id = item_id;setItem_idIsSet(true);this.numOfDaysStock = numOfDaysStock;setNumOfDaysStockIsSet(true);this.minStockLevel = minStockLevel;setMinStockLevelIsSet(true);}/*** Performs a deep copy on <i>other</i>.*/public ItemStockPurchaseParams(ItemStockPurchaseParams other) {__isset_bit_vector.clear();__isset_bit_vector.or(other.__isset_bit_vector);this.item_id = other.item_id;this.numOfDaysStock = other.numOfDaysStock;this.minStockLevel = other.minStockLevel;}public ItemStockPurchaseParams deepCopy() {return new ItemStockPurchaseParams(this);}@Overridepublic void clear() {setItem_idIsSet(false);this.item_id = 0;setNumOfDaysStockIsSet(false);this.numOfDaysStock = 0;setMinStockLevelIsSet(false);this.minStockLevel = 0;}public long getItem_id() {return this.item_id;}public void setItem_id(long item_id) {this.item_id = item_id;setItem_idIsSet(true);}public void unsetItem_id() {__isset_bit_vector.clear(__ITEM_ID_ISSET_ID);}/** Returns true if field item_id is set (has been assigned a value) and false otherwise */public boolean isSetItem_id() {return __isset_bit_vector.get(__ITEM_ID_ISSET_ID);}public void setItem_idIsSet(boolean value) {__isset_bit_vector.set(__ITEM_ID_ISSET_ID, value);}public int getNumOfDaysStock() {return this.numOfDaysStock;}public void setNumOfDaysStock(int numOfDaysStock) {this.numOfDaysStock = numOfDaysStock;setNumOfDaysStockIsSet(true);}public void unsetNumOfDaysStock() {__isset_bit_vector.clear(__NUMOFDAYSSTOCK_ISSET_ID);}/** Returns true if field numOfDaysStock is set (has been assigned a value) and false otherwise */public boolean isSetNumOfDaysStock() {return __isset_bit_vector.get(__NUMOFDAYSSTOCK_ISSET_ID);}public void setNumOfDaysStockIsSet(boolean value) {__isset_bit_vector.set(__NUMOFDAYSSTOCK_ISSET_ID, value);}public long getMinStockLevel() {return this.minStockLevel;}public void setMinStockLevel(long minStockLevel) {this.minStockLevel = minStockLevel;setMinStockLevelIsSet(true);}public void unsetMinStockLevel() {__isset_bit_vector.clear(__MINSTOCKLEVEL_ISSET_ID);}/** Returns true if field minStockLevel is set (has been assigned a value) and false otherwise */public boolean isSetMinStockLevel() {return __isset_bit_vector.get(__MINSTOCKLEVEL_ISSET_ID);}public void setMinStockLevelIsSet(boolean value) {__isset_bit_vector.set(__MINSTOCKLEVEL_ISSET_ID, value);}public void setFieldValue(_Fields field, Object value) {switch (field) {case ITEM_ID:if (value == null) {unsetItem_id();} else {setItem_id((Long)value);}break;case NUM_OF_DAYS_STOCK:if (value == null) {unsetNumOfDaysStock();} else {setNumOfDaysStock((Integer)value);}break;case MIN_STOCK_LEVEL:if (value == null) {unsetMinStockLevel();} else {setMinStockLevel((Long)value);}break;}}public Object getFieldValue(_Fields field) {switch (field) {case ITEM_ID:return Long.valueOf(getItem_id());case NUM_OF_DAYS_STOCK:return Integer.valueOf(getNumOfDaysStock());case MIN_STOCK_LEVEL:return Long.valueOf(getMinStockLevel());}throw new IllegalStateException();}/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */public boolean isSet(_Fields field) {if (field == null) {throw new IllegalArgumentException();}switch (field) {case ITEM_ID:return isSetItem_id();case NUM_OF_DAYS_STOCK:return isSetNumOfDaysStock();case MIN_STOCK_LEVEL:return isSetMinStockLevel();}throw new IllegalStateException();}@Overridepublic boolean equals(Object that) {if (that == null)return false;if (that instanceof ItemStockPurchaseParams)return this.equals((ItemStockPurchaseParams) that);return false;}public boolean equals(ItemStockPurchaseParams that) {if (that == null)return false;boolean this_present_item_id = true;boolean that_present_item_id = true;if (this_present_item_id || that_present_item_id) {if (!(this_present_item_id && that_present_item_id))return false;if (this.item_id != that.item_id)return false;}boolean this_present_numOfDaysStock = true;boolean that_present_numOfDaysStock = true;if (this_present_numOfDaysStock || that_present_numOfDaysStock) {if (!(this_present_numOfDaysStock && that_present_numOfDaysStock))return false;if (this.numOfDaysStock != that.numOfDaysStock)return false;}boolean this_present_minStockLevel = true;boolean that_present_minStockLevel = true;if (this_present_minStockLevel || that_present_minStockLevel) {if (!(this_present_minStockLevel && that_present_minStockLevel))return false;if (this.minStockLevel != that.minStockLevel)return false;}return true;}@Overridepublic int hashCode() {return 0;}public int compareTo(ItemStockPurchaseParams other) {if (!getClass().equals(other.getClass())) {return getClass().getName().compareTo(other.getClass().getName());}int lastComparison = 0;ItemStockPurchaseParams typedOther = (ItemStockPurchaseParams) other;lastComparison = Boolean.valueOf(isSetItem_id()).compareTo(typedOther.isSetItem_id());if (lastComparison != 0) {return lastComparison;}if (isSetItem_id()) {lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.item_id, typedOther.item_id);if (lastComparison != 0) {return lastComparison;}}lastComparison = Boolean.valueOf(isSetNumOfDaysStock()).compareTo(typedOther.isSetNumOfDaysStock());if (lastComparison != 0) {return lastComparison;}if (isSetNumOfDaysStock()) {lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.numOfDaysStock, typedOther.numOfDaysStock);if (lastComparison != 0) {return lastComparison;}}lastComparison = Boolean.valueOf(isSetMinStockLevel()).compareTo(typedOther.isSetMinStockLevel());if (lastComparison != 0) {return lastComparison;}if (isSetMinStockLevel()) {lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.minStockLevel, typedOther.minStockLevel);if (lastComparison != 0) {return lastComparison;}}return 0;}public _Fields fieldForId(int fieldId) {return _Fields.findByThriftId(fieldId);}public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {org.apache.thrift.protocol.TField field;iprot.readStructBegin();while (true){field = iprot.readFieldBegin();if (field.type == org.apache.thrift.protocol.TType.STOP) {break;}switch (field.id) {case 1: // ITEM_IDif (field.type == org.apache.thrift.protocol.TType.I64) {this.item_id = iprot.readI64();setItem_idIsSet(true);} else {org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);}break;case 2: // NUM_OF_DAYS_STOCKif (field.type == org.apache.thrift.protocol.TType.I32) {this.numOfDaysStock = iprot.readI32();setNumOfDaysStockIsSet(true);} else {org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);}break;case 3: // MIN_STOCK_LEVELif (field.type == org.apache.thrift.protocol.TType.I64) {this.minStockLevel = iprot.readI64();setMinStockLevelIsSet(true);} else {org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);}break;default:org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);}iprot.readFieldEnd();}iprot.readStructEnd();validate();}public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {validate();oprot.writeStructBegin(STRUCT_DESC);oprot.writeFieldBegin(ITEM_ID_FIELD_DESC);oprot.writeI64(this.item_id);oprot.writeFieldEnd();oprot.writeFieldBegin(NUM_OF_DAYS_STOCK_FIELD_DESC);oprot.writeI32(this.numOfDaysStock);oprot.writeFieldEnd();oprot.writeFieldBegin(MIN_STOCK_LEVEL_FIELD_DESC);oprot.writeI64(this.minStockLevel);oprot.writeFieldEnd();oprot.writeFieldStop();oprot.writeStructEnd();}@Overridepublic String toString() {StringBuilder sb = new StringBuilder("ItemStockPurchaseParams(");boolean first = true;sb.append("item_id:");sb.append(this.item_id);first = false;if (!first) sb.append(", ");sb.append("numOfDaysStock:");sb.append(this.numOfDaysStock);first = false;if (!first) sb.append(", ");sb.append("minStockLevel:");sb.append(this.minStockLevel);first = false;sb.append(")");return sb.toString();}public void validate() throws org.apache.thrift.TException {// check for required fields}private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {try {write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));} catch (org.apache.thrift.TException te) {throw new java.io.IOException(te);}}private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {try {// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.__isset_bit_vector = new BitSet(1);read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));} catch (org.apache.thrift.TException te) {throw new java.io.IOException(te);}}}