com.xiaomi.infra.galaxy.sds.thrift.PutRequest Maven / Gradle / Ivy
/**
* Autogenerated by Thrift Compiler (0.9.2)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package com.xiaomi.infra.galaxy.sds.thrift;
import libthrift091.scheme.IScheme;
import libthrift091.scheme.SchemeFactory;
import libthrift091.scheme.StandardScheme;
import libthrift091.scheme.TupleScheme;
import libthrift091.protocol.TTupleProtocol;
import libthrift091.protocol.TProtocolException;
import libthrift091.EncodingUtils;
import libthrift091.TException;
import libthrift091.async.AsyncMethodCallback;
import libthrift091.server.AbstractNonblockingServer.*;
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.nio.ByteBuffer;
import java.util.Arrays;
import javax.annotation.Generated;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
@Generated(value = "Autogenerated by Thrift Compiler (0.9.2)", date = "2016-8-10")
public class PutRequest implements libthrift091.TBase, java.io.Serializable, Cloneable, Comparable {
private static final libthrift091.protocol.TStruct STRUCT_DESC = new libthrift091.protocol.TStruct("PutRequest");
private static final libthrift091.protocol.TField TABLE_NAME_FIELD_DESC = new libthrift091.protocol.TField("tableName", libthrift091.protocol.TType.STRING, (short)1);
private static final libthrift091.protocol.TField RECORD_FIELD_DESC = new libthrift091.protocol.TField("record", libthrift091.protocol.TType.MAP, (short)2);
private static final libthrift091.protocol.TField CONDITION_FIELD_DESC = new libthrift091.protocol.TField("condition", libthrift091.protocol.TType.STRUCT, (short)3);
private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
static {
schemes.put(StandardScheme.class, new PutRequestStandardSchemeFactory());
schemes.put(TupleScheme.class, new PutRequestTupleSchemeFactory());
}
public String tableName; // optional
/**
* 待写入的记录
*/
public Map record; // optional
/**
* 仅当满足指定条件时执行写入操作
*/
public SimpleCondition condition; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements libthrift091.TFieldIdEnum {
TABLE_NAME((short)1, "tableName"),
/**
* 待写入的记录
*/
RECORD((short)2, "record"),
/**
* 仅当满足指定条件时执行写入操作
*/
CONDITION((short)3, "condition");
private static final Map byName = new HashMap();
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: // TABLE_NAME
return TABLE_NAME;
case 2: // RECORD
return RECORD;
case 3: // CONDITION
return CONDITION;
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 assignments
private static final _Fields optionals[] = {_Fields.TABLE_NAME,_Fields.RECORD,_Fields.CONDITION};
public static final Map<_Fields, libthrift091.meta_data.FieldMetaData> metaDataMap;
static {
Map<_Fields, libthrift091.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, libthrift091.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.TABLE_NAME, new libthrift091.meta_data.FieldMetaData("tableName", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.STRING)));
tmpMap.put(_Fields.RECORD, new libthrift091.meta_data.FieldMetaData("record", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.MAP , "Dictionary")));
tmpMap.put(_Fields.CONDITION, new libthrift091.meta_data.FieldMetaData("condition", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.StructMetaData(libthrift091.protocol.TType.STRUCT, SimpleCondition.class)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
libthrift091.meta_data.FieldMetaData.addStructMetaDataMap(PutRequest.class, metaDataMap);
}
public PutRequest() {
}
/**
* Performs a deep copy on other.
*/
public PutRequest(PutRequest other) {
if (other.isSetTableName()) {
this.tableName = other.tableName;
}
if (other.isSetRecord()) {
this.record = other.record;
}
if (other.isSetCondition()) {
this.condition = new SimpleCondition(other.condition);
}
}
public PutRequest deepCopy() {
return new PutRequest(this);
}
@Override
public void clear() {
this.tableName = null;
this.record = null;
this.condition = null;
}
public String getTableName() {
return this.tableName;
}
public PutRequest setTableName(String tableName) {
this.tableName = tableName;
return this;
}
public void unsetTableName() {
this.tableName = null;
}
/** Returns true if field tableName is set (has been assigned a value) and false otherwise */
public boolean isSetTableName() {
return this.tableName != null;
}
public void setTableNameIsSet(boolean value) {
if (!value) {
this.tableName = null;
}
}
public int getRecordSize() {
return (this.record == null) ? 0 : this.record.size();
}
public void putToRecord(String key, Datum val) {
if (this.record == null) {
this.record = new HashMap();
}
this.record.put(key, val);
}
/**
* 待写入的记录
*/
public Map getRecord() {
return this.record;
}
/**
* 待写入的记录
*/
public PutRequest setRecord(Map record) {
this.record = record;
return this;
}
public void unsetRecord() {
this.record = null;
}
/** Returns true if field record is set (has been assigned a value) and false otherwise */
public boolean isSetRecord() {
return this.record != null;
}
public void setRecordIsSet(boolean value) {
if (!value) {
this.record = null;
}
}
/**
* 仅当满足指定条件时执行写入操作
*/
public SimpleCondition getCondition() {
return this.condition;
}
/**
* 仅当满足指定条件时执行写入操作
*/
public PutRequest setCondition(SimpleCondition condition) {
this.condition = condition;
return this;
}
public void unsetCondition() {
this.condition = null;
}
/** Returns true if field condition is set (has been assigned a value) and false otherwise */
public boolean isSetCondition() {
return this.condition != null;
}
public void setConditionIsSet(boolean value) {
if (!value) {
this.condition = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case TABLE_NAME:
if (value == null) {
unsetTableName();
} else {
setTableName((String)value);
}
break;
case RECORD:
if (value == null) {
unsetRecord();
} else {
setRecord((Map)value);
}
break;
case CONDITION:
if (value == null) {
unsetCondition();
} else {
setCondition((SimpleCondition)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case TABLE_NAME:
return getTableName();
case RECORD:
return getRecord();
case CONDITION:
return getCondition();
}
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 TABLE_NAME:
return isSetTableName();
case RECORD:
return isSetRecord();
case CONDITION:
return isSetCondition();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof PutRequest)
return this.equals((PutRequest)that);
return false;
}
public boolean equals(PutRequest that) {
if (that == null)
return false;
boolean this_present_tableName = true && this.isSetTableName();
boolean that_present_tableName = true && that.isSetTableName();
if (this_present_tableName || that_present_tableName) {
if (!(this_present_tableName && that_present_tableName))
return false;
if (!this.tableName.equals(that.tableName))
return false;
}
boolean this_present_record = true && this.isSetRecord();
boolean that_present_record = true && that.isSetRecord();
if (this_present_record || that_present_record) {
if (!(this_present_record && that_present_record))
return false;
if (!this.record.equals(that.record))
return false;
}
boolean this_present_condition = true && this.isSetCondition();
boolean that_present_condition = true && that.isSetCondition();
if (this_present_condition || that_present_condition) {
if (!(this_present_condition && that_present_condition))
return false;
if (!this.condition.equals(that.condition))
return false;
}
return true;
}
@Override
public int hashCode() {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy