scray.service.qmodel.thriftjava.ScrayTRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scray-client-jdbc Show documentation
Show all versions of scray-client-jdbc Show documentation
scray java code, which can be used from java and scala
The newest version!
/**
* Autogenerated by Thrift
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
*/
package scray.service.qmodel.thriftjava;
import org.apache.commons.lang.builder.HashCodeBuilder;
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 org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.thrift.*;
import org.apache.thrift.async.*;
import org.apache.thrift.meta_data.*;
import org.apache.thrift.transport.*;
import org.apache.thrift.protocol.*;
// No additional import required for struct/union.
public class ScrayTRow implements TBase, java.io.Serializable, Cloneable {
private static final TStruct STRUCT_DESC = new TStruct("ScrayTRow");
private static final TField ROW_ID_FIELD_DESC = new TField("rowId", TType.STRING, (short)1);
private static final TField COLUMNS_FIELD_DESC = new TField("columns", TType.LIST, (short)2);
public ByteBuffer rowId;
public List columns;
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements TFieldIdEnum {
ROW_ID((short)1, "rowId"),
COLUMNS((short)2, "columns");
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: // ROW_ID
return ROW_ID;
case 2: // COLUMNS
return COLUMNS;
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
public static final Map<_Fields, FieldMetaData> metaDataMap;
static {
Map<_Fields, FieldMetaData> tmpMap = new EnumMap<_Fields, FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.ROW_ID, new FieldMetaData("rowId", TFieldRequirementType.OPTIONAL,
new FieldValueMetaData(TType.STRING)));
tmpMap.put(_Fields.COLUMNS, new FieldMetaData("columns", TFieldRequirementType.OPTIONAL,
new ListMetaData(TType.LIST,
new StructMetaData(TType.STRUCT, ScrayTColumn.class))));
metaDataMap = Collections.unmodifiableMap(tmpMap);
FieldMetaData.addStructMetaDataMap(ScrayTRow.class, metaDataMap);
}
public ScrayTRow() {
}
/**
* Performs a deep copy on other.
*/
public ScrayTRow(ScrayTRow other) {
if (other.isSetRowId()) {
this.rowId = TBaseHelper.copyBinary(other.rowId);
}
if (other.isSetColumns()) {
List __this__columns = new ArrayList();
for (ScrayTColumn other_element : other.columns) {
__this__columns.add(new ScrayTColumn(other_element));
}
this.columns = __this__columns;
}
}
public ScrayTRow deepCopy() {
return new ScrayTRow(this);
}
@java.lang.Override
public void clear() {
this.rowId = null;
this.columns = null;
}
public byte[] getRowId() {
setRowId(TBaseHelper.rightSize(rowId));
return rowId.array();
}
public ByteBuffer BufferForRowId() {
return rowId;
}
public ScrayTRow setRowId(byte[] rowId) {
setRowId(ByteBuffer.wrap(rowId));
return this;
}
public ScrayTRow setRowId(ByteBuffer rowId) {
this.rowId = rowId;
return this;
}
public void unsetRowId() {
this.rowId = null;
}
/** Returns true if field rowId is set (has been asigned a value) and false otherwise */
public boolean isSetRowId() {
return this.rowId != null;
}
public void setRowIdIsSet(boolean value) {
if (!value) {
this.rowId = null;
}
}
public int getColumnsSize() {
return (this.columns == null) ? 0 : this.columns.size();
}
public java.util.Iterator getColumnsIterator() {
return (this.columns == null) ? null : this.columns.iterator();
}
public void addToColumns(ScrayTColumn elem) {
if (this.columns == null) {
this.columns = new ArrayList();
}
this.columns.add(elem);
}
public List getColumns() {
return this.columns;
}
public ScrayTRow setColumns(List columns) {
this.columns = columns;
return this;
}
public void unsetColumns() {
this.columns = null;
}
/** Returns true if field columns is set (has been asigned a value) and false otherwise */
public boolean isSetColumns() {
return this.columns != null;
}
public void setColumnsIsSet(boolean value) {
if (!value) {
this.columns = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case ROW_ID:
if (value == null) {
unsetRowId();
} else {
setRowId((ByteBuffer)value);
}
break;
case COLUMNS:
if (value == null) {
unsetColumns();
} else {
setColumns((List)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case ROW_ID:
return getRowId();
case COLUMNS:
return getColumns();
}
throw new IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new IllegalArgumentException();
}
switch (field) {
case ROW_ID:
return isSetRowId();
case COLUMNS:
return isSetColumns();
}
throw new IllegalStateException();
}
@java.lang.Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof ScrayTRow)
return this.equals((ScrayTRow)that);
return false;
}
public boolean equals(ScrayTRow that) {
if (that == null)
return false;
boolean this_present_rowId = true && this.isSetRowId();
boolean that_present_rowId = true && that.isSetRowId();
if (this_present_rowId || that_present_rowId) {
if (!(this_present_rowId && that_present_rowId))
return false;
if (!this.rowId.equals(that.rowId))
return false;
}
boolean this_present_columns = true && this.isSetColumns();
boolean that_present_columns = true && that.isSetColumns();
if (this_present_columns || that_present_columns) {
if (!(this_present_columns && that_present_columns))
return false;
if (!this.columns.equals(that.columns))
return false;
}
return true;
}
@java.lang.Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
boolean present_rowId = true && (isSetRowId());
builder.append(present_rowId);
if (present_rowId)
builder.append(rowId);
boolean present_columns = true && (isSetColumns());
builder.append(present_columns);
if (present_columns)
builder.append(columns);
return builder.toHashCode();
}
public int compareTo(ScrayTRow other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
ScrayTRow typedOther = (ScrayTRow)other;
lastComparison = Boolean.valueOf(isSetRowId()).compareTo(typedOther.isSetRowId());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetRowId()) {
lastComparison = TBaseHelper.compareTo(this.rowId, typedOther.rowId);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetColumns()).compareTo(typedOther.isSetColumns());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetColumns()) {
lastComparison = TBaseHelper.compareTo(this.columns, typedOther.columns);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(TProtocol iprot) throws TException {
TField field;
iprot.readStructBegin();
while (true)
{
field = iprot.readFieldBegin();
if (field.type == TType.STOP) {
break;
}
switch (field.id) {
case 1: // ROW_ID
if (field.type == TType.STRING) {
this.rowId = iprot.readBinary();
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case 2: // COLUMNS
if (field.type == TType.LIST) {
{
TList _list9 = iprot.readListBegin();
this.columns = new ArrayList(_list9.size);
for (int _i10 = 0; _i10 < _list9.size; ++_i10)
{
ScrayTColumn _elem11;
_elem11 = new ScrayTColumn();
_elem11.read(iprot);
this.columns.add(_elem11);
}
iprot.readListEnd();
}
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
default:
TProtocolUtil.skip(iprot, field.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
validate();
}
public void write(TProtocol oprot) throws TException {
validate();
oprot.writeStructBegin(STRUCT_DESC);
if (this.rowId != null) {
if (isSetRowId()) {
oprot.writeFieldBegin(ROW_ID_FIELD_DESC);
oprot.writeBinary(this.rowId);
oprot.writeFieldEnd();
}
}
if (this.columns != null) {
if (isSetColumns()) {
oprot.writeFieldBegin(COLUMNS_FIELD_DESC);
{
oprot.writeListBegin(new TList(TType.STRUCT, this.columns.size()));
for (ScrayTColumn _iter12 : this.columns)
{
_iter12.write(oprot);
}
oprot.writeListEnd();
}
oprot.writeFieldEnd();
}
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@java.lang.Override
public String toString() {
StringBuilder sb = new StringBuilder("ScrayTRow(");
boolean first = true;
if (isSetRowId()) {
sb.append("rowId:");
if (this.rowId == null) {
sb.append("null");
} else {
TBaseHelper.toString(this.rowId, sb);
}
first = false;
}
if (isSetColumns()) {
if (!first) sb.append(", ");
sb.append("columns:");
if (this.columns == null) {
sb.append("null");
} else {
sb.append(this.columns);
}
first = false;
}
sb.append(")");
return sb.toString();
}
public void validate() throws TException {
// check for required fields
}
}