All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scray.service.qmodel.thriftjava.ScrayTColumn Maven / Gradle / Ivy

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 ScrayTColumn implements TBase, java.io.Serializable, Cloneable {
  private static final TStruct STRUCT_DESC = new TStruct("ScrayTColumn");

  private static final TField COLUMN_INFO_FIELD_DESC = new TField("columnInfo", TType.STRUCT, (short)1);
  private static final TField VALUE_FIELD_DESC = new TField("value", TType.STRING, (short)2);


  public ScrayTColumnInfo columnInfo;
  public ByteBuffer value;

  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
  public enum _Fields implements TFieldIdEnum {
    COLUMN_INFO((short)1, "columnInfo"),
    VALUE((short)2, "value");
  
    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: // COLUMN_INFO
          return COLUMN_INFO;
        case 2: // VALUE
          return VALUE;
        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.COLUMN_INFO, new FieldMetaData("columnInfo", TFieldRequirementType.DEFAULT,
      new StructMetaData(TType.STRUCT, ScrayTColumnInfo.class)));
    tmpMap.put(_Fields.VALUE, new FieldMetaData("value", TFieldRequirementType.DEFAULT,
      new FieldValueMetaData(TType.STRING)));
    metaDataMap = Collections.unmodifiableMap(tmpMap);
    FieldMetaData.addStructMetaDataMap(ScrayTColumn.class, metaDataMap);
  }


  public ScrayTColumn() {
  }

  public ScrayTColumn(
    ScrayTColumnInfo columnInfo,
    ByteBuffer value)
  {
    this();
    this.columnInfo = columnInfo;
    this.value = value;
  }

  /**
   * Performs a deep copy on other.
   */
  public ScrayTColumn(ScrayTColumn other) {
    if (other.isSetColumnInfo()) {
      this.columnInfo = new ScrayTColumnInfo(other.columnInfo);
    }
    if (other.isSetValue()) {
      this.value = TBaseHelper.copyBinary(other.value);
    }
  }

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

  @java.lang.Override
  public void clear() {
    this.columnInfo = null;
    this.value = null;
  }

  public ScrayTColumnInfo getColumnInfo() {
    return this.columnInfo;
  }

  public ScrayTColumn setColumnInfo(ScrayTColumnInfo columnInfo) {
    this.columnInfo = columnInfo;
    
    return this;
  }

  public void unsetColumnInfo() {
    this.columnInfo = null;
  }

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

  public void setColumnInfoIsSet(boolean value) {
    if (!value) {
      this.columnInfo = null;
    }
  }

  public byte[] getValue() {
    setValue(TBaseHelper.rightSize(value));
    return value.array();
  }

  public ByteBuffer BufferForValue() {
    return value;
  }

  public ScrayTColumn setValue(byte[] value) {
    setValue(ByteBuffer.wrap(value));
    return this;
  }

  public ScrayTColumn setValue(ByteBuffer value) {
    this.value = value;
    
    return this;
  }

  public void unsetValue() {
    this.value = null;
  }

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

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

  public void setFieldValue(_Fields field, Object value) {
    switch (field) {
    case COLUMN_INFO:
      if (value == null) {
        unsetColumnInfo();
      } else {
        setColumnInfo((ScrayTColumnInfo)value);
      }
      break;
    case VALUE:
      if (value == null) {
        unsetValue();
      } else {
        setValue((ByteBuffer)value);
      }
      break;
    }
  }

  public Object getFieldValue(_Fields field) {
    switch (field) {
    case COLUMN_INFO:
      return getColumnInfo();
    case VALUE:
      return getValue();
    }
    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 COLUMN_INFO:
      return isSetColumnInfo();
    case VALUE:
      return isSetValue();
    }
    throw new IllegalStateException();
  }

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

  public boolean equals(ScrayTColumn that) {
    if (that == null)
      return false;
    boolean this_present_columnInfo = true && this.isSetColumnInfo();
    boolean that_present_columnInfo = true && that.isSetColumnInfo();
    if (this_present_columnInfo || that_present_columnInfo) {
      if (!(this_present_columnInfo && that_present_columnInfo))
        return false;
      if (!this.columnInfo.equals(that.columnInfo))
        return false;
    }
    boolean this_present_value = true && this.isSetValue();
    boolean that_present_value = true && that.isSetValue();
    if (this_present_value || that_present_value) {
      if (!(this_present_value && that_present_value))
        return false;
      if (!this.value.equals(that.value))
        return false;
    }

    return true;
  }

  @java.lang.Override
  public int hashCode() {
    HashCodeBuilder builder = new HashCodeBuilder();
    boolean present_columnInfo = true && (isSetColumnInfo());
    builder.append(present_columnInfo);
    if (present_columnInfo)
      builder.append(columnInfo);
    boolean present_value = true && (isSetValue());
    builder.append(present_value);
    if (present_value)
      builder.append(value);
    return builder.toHashCode();
  }

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

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

    lastComparison = Boolean.valueOf(isSetColumnInfo()).compareTo(typedOther.isSetColumnInfo());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetColumnInfo()) {
      lastComparison = TBaseHelper.compareTo(this.columnInfo, typedOther.columnInfo);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = Boolean.valueOf(isSetValue()).compareTo(typedOther.isSetValue());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetValue()) {
      lastComparison = TBaseHelper.compareTo(this.value, typedOther.value);
      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: // COLUMN_INFO
          if (field.type == TType.STRUCT) {
            this.columnInfo = new ScrayTColumnInfo();
            this.columnInfo.read(iprot);
          } else {
            TProtocolUtil.skip(iprot, field.type);
          }
          break;
        case 2: // VALUE
          if (field.type == TType.STRING) {
            this.value = iprot.readBinary();
          } 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.columnInfo != null) {
      oprot.writeFieldBegin(COLUMN_INFO_FIELD_DESC);
      this.columnInfo.write(oprot);
      oprot.writeFieldEnd();
    }
    if (this.value != null) {
      oprot.writeFieldBegin(VALUE_FIELD_DESC);
      oprot.writeBinary(this.value);
      oprot.writeFieldEnd();
    }
    oprot.writeFieldStop();
    oprot.writeStructEnd();
  }

  @java.lang.Override
  public String toString() {
    StringBuilder sb = new StringBuilder("ScrayTColumn(");
    boolean first = true;
    sb.append("columnInfo:");
    if (this.columnInfo == null) {
      sb.append("null");
    } else {
      sb.append(this.columnInfo);
    }
    first = false;
    if (!first) sb.append(", ");
    sb.append("value:");
    if (this.value == null) {
      sb.append("null");
    } else {
      TBaseHelper.toString(this.value, sb);
    }
    first = false;
    sb.append(")");
    return sb.toString();
  }

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy