org.apache.hadoop.hive.metastore.api.ColumnStatisticsObj Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-apache Show documentation
Show all versions of hive-apache Show documentation
Shaded version of Apache Hive for Presto
The newest version!
/**
* Autogenerated by Thrift Compiler (0.9.3)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hive.metastore.api;
import org.apache.thrift.scheme.IScheme;
import org.apache.thrift.scheme.SchemeFactory;
import org.apache.thrift.scheme.StandardScheme;
import org.apache.thrift.scheme.TupleScheme;
import org.apache.thrift.protocol.TTupleProtocol;
import org.apache.thrift.protocol.TProtocolException;
import org.apache.thrift.EncodingUtils;
import org.apache.thrift.TException;
import org.apache.thrift.async.AsyncMethodCallback;
import org.apache.thrift.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 io.prestosql.hive.$internal.org.slf4j.Logger;
import io.prestosql.hive.$internal.org.slf4j.LoggerFactory;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)")
public class ColumnStatisticsObj implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("ColumnStatisticsObj");
private static final org.apache.thrift.protocol.TField COL_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("colName", org.apache.thrift.protocol.TType.STRING, (short)1);
private static final org.apache.thrift.protocol.TField COL_TYPE_FIELD_DESC = new org.apache.thrift.protocol.TField("colType", org.apache.thrift.protocol.TType.STRING, (short)2);
private static final org.apache.thrift.protocol.TField STATS_DATA_FIELD_DESC = new org.apache.thrift.protocol.TField("statsData", org.apache.thrift.protocol.TType.STRUCT, (short)3);
private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
static {
schemes.put(StandardScheme.class, new ColumnStatisticsObjStandardSchemeFactory());
schemes.put(TupleScheme.class, new ColumnStatisticsObjTupleSchemeFactory());
}
private String colName; // required
private String colType; // required
private ColumnStatisticsData statsData; // 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 {
COL_NAME((short)1, "colName"),
COL_TYPE((short)2, "colType"),
STATS_DATA((short)3, "statsData");
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: // COL_NAME
return COL_NAME;
case 2: // COL_TYPE
return COL_TYPE;
case 3: // STATS_DATA
return STATS_DATA;
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, 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.COL_NAME, new org.apache.thrift.meta_data.FieldMetaData("colName", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.COL_TYPE, new org.apache.thrift.meta_data.FieldMetaData("colType", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.STATS_DATA, new org.apache.thrift.meta_data.FieldMetaData("statsData", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ColumnStatisticsData.class)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(ColumnStatisticsObj.class, metaDataMap);
}
public ColumnStatisticsObj() {
}
public ColumnStatisticsObj(
String colName,
String colType,
ColumnStatisticsData statsData)
{
this();
this.colName = colName;
this.colType = colType;
this.statsData = statsData;
}
/**
* Performs a deep copy on other.
*/
public ColumnStatisticsObj(ColumnStatisticsObj other) {
if (other.isSetColName()) {
this.colName = other.colName;
}
if (other.isSetColType()) {
this.colType = other.colType;
}
if (other.isSetStatsData()) {
this.statsData = new ColumnStatisticsData(other.statsData);
}
}
public ColumnStatisticsObj deepCopy() {
return new ColumnStatisticsObj(this);
}
@Override
public void clear() {
this.colName = null;
this.colType = null;
this.statsData = null;
}
public String getColName() {
return this.colName;
}
public void setColName(String colName) {
this.colName = colName;
}
public void unsetColName() {
this.colName = null;
}
/** Returns true if field colName is set (has been assigned a value) and false otherwise */
public boolean isSetColName() {
return this.colName != null;
}
public void setColNameIsSet(boolean value) {
if (!value) {
this.colName = null;
}
}
public String getColType() {
return this.colType;
}
public void setColType(String colType) {
this.colType = colType;
}
public void unsetColType() {
this.colType = null;
}
/** Returns true if field colType is set (has been assigned a value) and false otherwise */
public boolean isSetColType() {
return this.colType != null;
}
public void setColTypeIsSet(boolean value) {
if (!value) {
this.colType = null;
}
}
public ColumnStatisticsData getStatsData() {
return this.statsData;
}
public void setStatsData(ColumnStatisticsData statsData) {
this.statsData = statsData;
}
public void unsetStatsData() {
this.statsData = null;
}
/** Returns true if field statsData is set (has been assigned a value) and false otherwise */
public boolean isSetStatsData() {
return this.statsData != null;
}
public void setStatsDataIsSet(boolean value) {
if (!value) {
this.statsData = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case COL_NAME:
if (value == null) {
unsetColName();
} else {
setColName((String)value);
}
break;
case COL_TYPE:
if (value == null) {
unsetColType();
} else {
setColType((String)value);
}
break;
case STATS_DATA:
if (value == null) {
unsetStatsData();
} else {
setStatsData((ColumnStatisticsData)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case COL_NAME:
return getColName();
case COL_TYPE:
return getColType();
case STATS_DATA:
return getStatsData();
}
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 COL_NAME:
return isSetColName();
case COL_TYPE:
return isSetColType();
case STATS_DATA:
return isSetStatsData();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof ColumnStatisticsObj)
return this.equals((ColumnStatisticsObj)that);
return false;
}
public boolean equals(ColumnStatisticsObj that) {
if (that == null)
return false;
boolean this_present_colName = true && this.isSetColName();
boolean that_present_colName = true && that.isSetColName();
if (this_present_colName || that_present_colName) {
if (!(this_present_colName && that_present_colName))
return false;
if (!this.colName.equals(that.colName))
return false;
}
boolean this_present_colType = true && this.isSetColType();
boolean that_present_colType = true && that.isSetColType();
if (this_present_colType || that_present_colType) {
if (!(this_present_colType && that_present_colType))
return false;
if (!this.colType.equals(that.colType))
return false;
}
boolean this_present_statsData = true && this.isSetStatsData();
boolean that_present_statsData = true && that.isSetStatsData();
if (this_present_statsData || that_present_statsData) {
if (!(this_present_statsData && that_present_statsData))
return false;
if (!this.statsData.equals(that.statsData))
return false;
}
return true;
}
@Override
public int hashCode() {
List © 2015 - 2025 Weber Informatics LLC | Privacy Policy