ezbake.data.elastic.thrift.StatisticalFacetResult.java Source code

Java tutorial

Introduction

Here is the source code for ezbake.data.elastic.thrift.StatisticalFacetResult.java

Source

/*   Copyright (C) 2013-2014 Computer Sciences Corporation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License. */

/**
 * Autogenerated by Thrift Compiler (0.9.1)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package ezbake.data.elastic.thrift;

import org.apache.commons.lang3.builder.HashCodeBuilder;
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 org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class StatisticalFacetResult
        implements org.apache.thrift.TBase<StatisticalFacetResult, StatisticalFacetResult._Fields>,
        java.io.Serializable, Cloneable, Comparable<StatisticalFacetResult> {
    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct(
            "StatisticalFacetResult");

    private static final org.apache.thrift.protocol.TField COUNT_FIELD_DESC = new org.apache.thrift.protocol.TField(
            "count", org.apache.thrift.protocol.TType.I64, (short) 1);
    private static final org.apache.thrift.protocol.TField MAX_FIELD_DESC = new org.apache.thrift.protocol.TField(
            "max", org.apache.thrift.protocol.TType.DOUBLE, (short) 2);
    private static final org.apache.thrift.protocol.TField MEAN_FIELD_DESC = new org.apache.thrift.protocol.TField(
            "mean", org.apache.thrift.protocol.TType.DOUBLE, (short) 3);
    private static final org.apache.thrift.protocol.TField MIN_FIELD_DESC = new org.apache.thrift.protocol.TField(
            "min", org.apache.thrift.protocol.TType.DOUBLE, (short) 4);
    private static final org.apache.thrift.protocol.TField STD_DEVIATION_FIELD_DESC = new org.apache.thrift.protocol.TField(
            "stdDeviation", org.apache.thrift.protocol.TType.DOUBLE, (short) 5);
    private static final org.apache.thrift.protocol.TField SUM_OF_SQUARES_FIELD_DESC = new org.apache.thrift.protocol.TField(
            "sumOfSquares", org.apache.thrift.protocol.TType.DOUBLE, (short) 6);
    private static final org.apache.thrift.protocol.TField TOTAL_FIELD_DESC = new org.apache.thrift.protocol.TField(
            "total", org.apache.thrift.protocol.TType.DOUBLE, (short) 7);
    private static final org.apache.thrift.protocol.TField VARIANCE_FIELD_DESC = new org.apache.thrift.protocol.TField(
            "variance", org.apache.thrift.protocol.TType.DOUBLE, (short) 8);

    private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
    static {
        schemes.put(StandardScheme.class, new StatisticalFacetResultStandardSchemeFactory());
        schemes.put(TupleScheme.class, new StatisticalFacetResultTupleSchemeFactory());
    }

    public long count; // required
    public double max; // required
    public double mean; // required
    public double min; // required
    public double stdDeviation; // required
    public double sumOfSquares; // required
    public double total; // required
    public double variance; // 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 {
        COUNT((short) 1, "count"), MAX((short) 2, "max"), MEAN((short) 3, "mean"), MIN((short) 4,
                "min"), STD_DEVIATION((short) 5, "stdDeviation"), SUM_OF_SQUARES((short) 6,
                        "sumOfSquares"), TOTAL((short) 7, "total"), VARIANCE((short) 8, "variance");

        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: // COUNT
                return COUNT;
            case 2: // MAX
                return MAX;
            case 3: // MEAN
                return MEAN;
            case 4: // MIN
                return MIN;
            case 5: // STD_DEVIATION
                return STD_DEVIATION;
            case 6: // SUM_OF_SQUARES
                return SUM_OF_SQUARES;
            case 7: // TOTAL
                return TOTAL;
            case 8: // VARIANCE
                return VARIANCE;
            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 int __COUNT_ISSET_ID = 0;
    private static final int __MAX_ISSET_ID = 1;
    private static final int __MEAN_ISSET_ID = 2;
    private static final int __MIN_ISSET_ID = 3;
    private static final int __STDDEVIATION_ISSET_ID = 4;
    private static final int __SUMOFSQUARES_ISSET_ID = 5;
    private static final int __TOTAL_ISSET_ID = 6;
    private static final int __VARIANCE_ISSET_ID = 7;
    private byte __isset_bitfield = 0;
    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.COUNT,
                new org.apache.thrift.meta_data.FieldMetaData("count",
                        org.apache.thrift.TFieldRequirementType.DEFAULT,
                        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
        tmpMap.put(_Fields.MAX, new org.apache.thrift.meta_data.FieldMetaData("max",
                org.apache.thrift.TFieldRequirementType.DEFAULT,
                new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.DOUBLE)));
        tmpMap.put(_Fields.MEAN, new org.apache.thrift.meta_data.FieldMetaData("mean",
                org.apache.thrift.TFieldRequirementType.DEFAULT,
                new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.DOUBLE)));
        tmpMap.put(_Fields.MIN, new org.apache.thrift.meta_data.FieldMetaData("min",
                org.apache.thrift.TFieldRequirementType.DEFAULT,
                new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.DOUBLE)));
        tmpMap.put(_Fields.STD_DEVIATION, new org.apache.thrift.meta_data.FieldMetaData("stdDeviation",
                org.apache.thrift.TFieldRequirementType.DEFAULT,
                new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.DOUBLE)));
        tmpMap.put(_Fields.SUM_OF_SQUARES, new org.apache.thrift.meta_data.FieldMetaData("sumOfSquares",
                org.apache.thrift.TFieldRequirementType.DEFAULT,
                new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.DOUBLE)));
        tmpMap.put(_Fields.TOTAL, new org.apache.thrift.meta_data.FieldMetaData("total",
                org.apache.thrift.TFieldRequirementType.DEFAULT,
                new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.DOUBLE)));
        tmpMap.put(_Fields.VARIANCE, new org.apache.thrift.meta_data.FieldMetaData("variance",
                org.apache.thrift.TFieldRequirementType.DEFAULT,
                new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.DOUBLE)));
        metaDataMap = Collections.unmodifiableMap(tmpMap);
        org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(StatisticalFacetResult.class, metaDataMap);
    }

    public StatisticalFacetResult() {
    }

    public StatisticalFacetResult(long count, double max, double mean, double min, double stdDeviation,
            double sumOfSquares, double total, double variance) {
        this();
        this.count = count;
        setCountIsSet(true);
        this.max = max;
        setMaxIsSet(true);
        this.mean = mean;
        setMeanIsSet(true);
        this.min = min;
        setMinIsSet(true);
        this.stdDeviation = stdDeviation;
        setStdDeviationIsSet(true);
        this.sumOfSquares = sumOfSquares;
        setSumOfSquaresIsSet(true);
        this.total = total;
        setTotalIsSet(true);
        this.variance = variance;
        setVarianceIsSet(true);
    }

    /**
     * Performs a deep copy on <i>other</i>.
     */
    public StatisticalFacetResult(StatisticalFacetResult other) {
        __isset_bitfield = other.__isset_bitfield;
        this.count = other.count;
        this.max = other.max;
        this.mean = other.mean;
        this.min = other.min;
        this.stdDeviation = other.stdDeviation;
        this.sumOfSquares = other.sumOfSquares;
        this.total = other.total;
        this.variance = other.variance;
    }

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

    @Override
    public void clear() {
        setCountIsSet(false);
        this.count = 0;
        setMaxIsSet(false);
        this.max = 0.0;
        setMeanIsSet(false);
        this.mean = 0.0;
        setMinIsSet(false);
        this.min = 0.0;
        setStdDeviationIsSet(false);
        this.stdDeviation = 0.0;
        setSumOfSquaresIsSet(false);
        this.sumOfSquares = 0.0;
        setTotalIsSet(false);
        this.total = 0.0;
        setVarianceIsSet(false);
        this.variance = 0.0;
    }

    public long getCount() {
        return this.count;
    }

    public StatisticalFacetResult setCount(long count) {
        this.count = count;
        setCountIsSet(true);
        return this;
    }

    public void unsetCount() {
        __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __COUNT_ISSET_ID);
    }

    /** Returns true if field count is set (has been assigned a value) and false otherwise */
    public boolean isSetCount() {
        return EncodingUtils.testBit(__isset_bitfield, __COUNT_ISSET_ID);
    }

    public void setCountIsSet(boolean value) {
        __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __COUNT_ISSET_ID, value);
    }

    public double getMax() {
        return this.max;
    }

    public StatisticalFacetResult setMax(double max) {
        this.max = max;
        setMaxIsSet(true);
        return this;
    }

    public void unsetMax() {
        __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MAX_ISSET_ID);
    }

    /** Returns true if field max is set (has been assigned a value) and false otherwise */
    public boolean isSetMax() {
        return EncodingUtils.testBit(__isset_bitfield, __MAX_ISSET_ID);
    }

    public void setMaxIsSet(boolean value) {
        __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MAX_ISSET_ID, value);
    }

    public double getMean() {
        return this.mean;
    }

    public StatisticalFacetResult setMean(double mean) {
        this.mean = mean;
        setMeanIsSet(true);
        return this;
    }

    public void unsetMean() {
        __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MEAN_ISSET_ID);
    }

    /** Returns true if field mean is set (has been assigned a value) and false otherwise */
    public boolean isSetMean() {
        return EncodingUtils.testBit(__isset_bitfield, __MEAN_ISSET_ID);
    }

    public void setMeanIsSet(boolean value) {
        __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MEAN_ISSET_ID, value);
    }

    public double getMin() {
        return this.min;
    }

    public StatisticalFacetResult setMin(double min) {
        this.min = min;
        setMinIsSet(true);
        return this;
    }

    public void unsetMin() {
        __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MIN_ISSET_ID);
    }

    /** Returns true if field min is set (has been assigned a value) and false otherwise */
    public boolean isSetMin() {
        return EncodingUtils.testBit(__isset_bitfield, __MIN_ISSET_ID);
    }

    public void setMinIsSet(boolean value) {
        __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MIN_ISSET_ID, value);
    }

    public double getStdDeviation() {
        return this.stdDeviation;
    }

    public StatisticalFacetResult setStdDeviation(double stdDeviation) {
        this.stdDeviation = stdDeviation;
        setStdDeviationIsSet(true);
        return this;
    }

    public void unsetStdDeviation() {
        __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __STDDEVIATION_ISSET_ID);
    }

    /** Returns true if field stdDeviation is set (has been assigned a value) and false otherwise */
    public boolean isSetStdDeviation() {
        return EncodingUtils.testBit(__isset_bitfield, __STDDEVIATION_ISSET_ID);
    }

    public void setStdDeviationIsSet(boolean value) {
        __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __STDDEVIATION_ISSET_ID, value);
    }

    public double getSumOfSquares() {
        return this.sumOfSquares;
    }

    public StatisticalFacetResult setSumOfSquares(double sumOfSquares) {
        this.sumOfSquares = sumOfSquares;
        setSumOfSquaresIsSet(true);
        return this;
    }

    public void unsetSumOfSquares() {
        __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __SUMOFSQUARES_ISSET_ID);
    }

    /** Returns true if field sumOfSquares is set (has been assigned a value) and false otherwise */
    public boolean isSetSumOfSquares() {
        return EncodingUtils.testBit(__isset_bitfield, __SUMOFSQUARES_ISSET_ID);
    }

    public void setSumOfSquaresIsSet(boolean value) {
        __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __SUMOFSQUARES_ISSET_ID, value);
    }

    public double getTotal() {
        return this.total;
    }

    public StatisticalFacetResult setTotal(double total) {
        this.total = total;
        setTotalIsSet(true);
        return this;
    }

    public void unsetTotal() {
        __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __TOTAL_ISSET_ID);
    }

    /** Returns true if field total is set (has been assigned a value) and false otherwise */
    public boolean isSetTotal() {
        return EncodingUtils.testBit(__isset_bitfield, __TOTAL_ISSET_ID);
    }

    public void setTotalIsSet(boolean value) {
        __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __TOTAL_ISSET_ID, value);
    }

    public double getVariance() {
        return this.variance;
    }

    public StatisticalFacetResult setVariance(double variance) {
        this.variance = variance;
        setVarianceIsSet(true);
        return this;
    }

    public void unsetVariance() {
        __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __VARIANCE_ISSET_ID);
    }

    /** Returns true if field variance is set (has been assigned a value) and false otherwise */
    public boolean isSetVariance() {
        return EncodingUtils.testBit(__isset_bitfield, __VARIANCE_ISSET_ID);
    }

    public void setVarianceIsSet(boolean value) {
        __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __VARIANCE_ISSET_ID, value);
    }

    public void setFieldValue(_Fields field, Object value) {
        switch (field) {
        case COUNT:
            if (value == null) {
                unsetCount();
            } else {
                setCount((Long) value);
            }
            break;

        case MAX:
            if (value == null) {
                unsetMax();
            } else {
                setMax((Double) value);
            }
            break;

        case MEAN:
            if (value == null) {
                unsetMean();
            } else {
                setMean((Double) value);
            }
            break;

        case MIN:
            if (value == null) {
                unsetMin();
            } else {
                setMin((Double) value);
            }
            break;

        case STD_DEVIATION:
            if (value == null) {
                unsetStdDeviation();
            } else {
                setStdDeviation((Double) value);
            }
            break;

        case SUM_OF_SQUARES:
            if (value == null) {
                unsetSumOfSquares();
            } else {
                setSumOfSquares((Double) value);
            }
            break;

        case TOTAL:
            if (value == null) {
                unsetTotal();
            } else {
                setTotal((Double) value);
            }
            break;

        case VARIANCE:
            if (value == null) {
                unsetVariance();
            } else {
                setVariance((Double) value);
            }
            break;

        }
    }

    public Object getFieldValue(_Fields field) {
        switch (field) {
        case COUNT:
            return Long.valueOf(getCount());

        case MAX:
            return Double.valueOf(getMax());

        case MEAN:
            return Double.valueOf(getMean());

        case MIN:
            return Double.valueOf(getMin());

        case STD_DEVIATION:
            return Double.valueOf(getStdDeviation());

        case SUM_OF_SQUARES:
            return Double.valueOf(getSumOfSquares());

        case TOTAL:
            return Double.valueOf(getTotal());

        case VARIANCE:
            return Double.valueOf(getVariance());

        }
        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 COUNT:
            return isSetCount();
        case MAX:
            return isSetMax();
        case MEAN:
            return isSetMean();
        case MIN:
            return isSetMin();
        case STD_DEVIATION:
            return isSetStdDeviation();
        case SUM_OF_SQUARES:
            return isSetSumOfSquares();
        case TOTAL:
            return isSetTotal();
        case VARIANCE:
            return isSetVariance();
        }
        throw new IllegalStateException();
    }

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

    public boolean equals(StatisticalFacetResult that) {
        if (that == null)
            return false;

        boolean this_present_count = true;
        boolean that_present_count = true;
        if (this_present_count || that_present_count) {
            if (!(this_present_count && that_present_count))
                return false;
            if (this.count != that.count)
                return false;
        }

        boolean this_present_max = true;
        boolean that_present_max = true;
        if (this_present_max || that_present_max) {
            if (!(this_present_max && that_present_max))
                return false;
            if (this.max != that.max)
                return false;
        }

        boolean this_present_mean = true;
        boolean that_present_mean = true;
        if (this_present_mean || that_present_mean) {
            if (!(this_present_mean && that_present_mean))
                return false;
            if (this.mean != that.mean)
                return false;
        }

        boolean this_present_min = true;
        boolean that_present_min = true;
        if (this_present_min || that_present_min) {
            if (!(this_present_min && that_present_min))
                return false;
            if (this.min != that.min)
                return false;
        }

        boolean this_present_stdDeviation = true;
        boolean that_present_stdDeviation = true;
        if (this_present_stdDeviation || that_present_stdDeviation) {
            if (!(this_present_stdDeviation && that_present_stdDeviation))
                return false;
            if (this.stdDeviation != that.stdDeviation)
                return false;
        }

        boolean this_present_sumOfSquares = true;
        boolean that_present_sumOfSquares = true;
        if (this_present_sumOfSquares || that_present_sumOfSquares) {
            if (!(this_present_sumOfSquares && that_present_sumOfSquares))
                return false;
            if (this.sumOfSquares != that.sumOfSquares)
                return false;
        }

        boolean this_present_total = true;
        boolean that_present_total = true;
        if (this_present_total || that_present_total) {
            if (!(this_present_total && that_present_total))
                return false;
            if (this.total != that.total)
                return false;
        }

        boolean this_present_variance = true;
        boolean that_present_variance = true;
        if (this_present_variance || that_present_variance) {
            if (!(this_present_variance && that_present_variance))
                return false;
            if (this.variance != that.variance)
                return false;
        }

        return true;
    }

    @Override
    public int hashCode() {
        HashCodeBuilder builder = new HashCodeBuilder();

        boolean present_count = true;
        builder.append(present_count);
        if (present_count)
            builder.append(count);

        boolean present_max = true;
        builder.append(present_max);
        if (present_max)
            builder.append(max);

        boolean present_mean = true;
        builder.append(present_mean);
        if (present_mean)
            builder.append(mean);

        boolean present_min = true;
        builder.append(present_min);
        if (present_min)
            builder.append(min);

        boolean present_stdDeviation = true;
        builder.append(present_stdDeviation);
        if (present_stdDeviation)
            builder.append(stdDeviation);

        boolean present_sumOfSquares = true;
        builder.append(present_sumOfSquares);
        if (present_sumOfSquares)
            builder.append(sumOfSquares);

        boolean present_total = true;
        builder.append(present_total);
        if (present_total)
            builder.append(total);

        boolean present_variance = true;
        builder.append(present_variance);
        if (present_variance)
            builder.append(variance);

        return builder.toHashCode();
    }

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

        int lastComparison = 0;

        lastComparison = Boolean.valueOf(isSetCount()).compareTo(other.isSetCount());
        if (lastComparison != 0) {
            return lastComparison;
        }
        if (isSetCount()) {
            lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.count, other.count);
            if (lastComparison != 0) {
                return lastComparison;
            }
        }
        lastComparison = Boolean.valueOf(isSetMax()).compareTo(other.isSetMax());
        if (lastComparison != 0) {
            return lastComparison;
        }
        if (isSetMax()) {
            lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.max, other.max);
            if (lastComparison != 0) {
                return lastComparison;
            }
        }
        lastComparison = Boolean.valueOf(isSetMean()).compareTo(other.isSetMean());
        if (lastComparison != 0) {
            return lastComparison;
        }
        if (isSetMean()) {
            lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.mean, other.mean);
            if (lastComparison != 0) {
                return lastComparison;
            }
        }
        lastComparison = Boolean.valueOf(isSetMin()).compareTo(other.isSetMin());
        if (lastComparison != 0) {
            return lastComparison;
        }
        if (isSetMin()) {
            lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.min, other.min);
            if (lastComparison != 0) {
                return lastComparison;
            }
        }
        lastComparison = Boolean.valueOf(isSetStdDeviation()).compareTo(other.isSetStdDeviation());
        if (lastComparison != 0) {
            return lastComparison;
        }
        if (isSetStdDeviation()) {
            lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.stdDeviation, other.stdDeviation);
            if (lastComparison != 0) {
                return lastComparison;
            }
        }
        lastComparison = Boolean.valueOf(isSetSumOfSquares()).compareTo(other.isSetSumOfSquares());
        if (lastComparison != 0) {
            return lastComparison;
        }
        if (isSetSumOfSquares()) {
            lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.sumOfSquares, other.sumOfSquares);
            if (lastComparison != 0) {
                return lastComparison;
            }
        }
        lastComparison = Boolean.valueOf(isSetTotal()).compareTo(other.isSetTotal());
        if (lastComparison != 0) {
            return lastComparison;
        }
        if (isSetTotal()) {
            lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.total, other.total);
            if (lastComparison != 0) {
                return lastComparison;
            }
        }
        lastComparison = Boolean.valueOf(isSetVariance()).compareTo(other.isSetVariance());
        if (lastComparison != 0) {
            return lastComparison;
        }
        if (isSetVariance()) {
            lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.variance, other.variance);
            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 {
        schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
    }

    public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
        schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder("StatisticalFacetResult(");
        boolean first = true;

        sb.append("count:");
        sb.append(this.count);
        first = false;
        if (!first)
            sb.append(", ");
        sb.append("max:");
        sb.append(this.max);
        first = false;
        if (!first)
            sb.append(", ");
        sb.append("mean:");
        sb.append(this.mean);
        first = false;
        if (!first)
            sb.append(", ");
        sb.append("min:");
        sb.append(this.min);
        first = false;
        if (!first)
            sb.append(", ");
        sb.append("stdDeviation:");
        sb.append(this.stdDeviation);
        first = false;
        if (!first)
            sb.append(", ");
        sb.append("sumOfSquares:");
        sb.append(this.sumOfSquares);
        first = false;
        if (!first)
            sb.append(", ");
        sb.append("total:");
        sb.append(this.total);
        first = false;
        if (!first)
            sb.append(", ");
        sb.append("variance:");
        sb.append(this.variance);
        first = false;
        sb.append(")");
        return sb.toString();
    }

    public void validate() throws org.apache.thrift.TException {
        // check for required fields
        // check for sub-struct validity
    }

    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_bitfield = 0;
            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);
        }
    }

    private static class StatisticalFacetResultStandardSchemeFactory implements SchemeFactory {
        public StatisticalFacetResultStandardScheme getScheme() {
            return new StatisticalFacetResultStandardScheme();
        }
    }

    private static class StatisticalFacetResultStandardScheme extends StandardScheme<StatisticalFacetResult> {

        public void read(org.apache.thrift.protocol.TProtocol iprot, StatisticalFacetResult struct)
                throws org.apache.thrift.TException {
            org.apache.thrift.protocol.TField schemeField;
            iprot.readStructBegin();
            while (true) {
                schemeField = iprot.readFieldBegin();
                if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
                    break;
                }
                switch (schemeField.id) {
                case 1: // COUNT
                    if (schemeField.type == org.apache.thrift.protocol.TType.I64) {
                        struct.count = iprot.readI64();
                        struct.setCountIsSet(true);
                    } else {
                        org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
                    }
                    break;
                case 2: // MAX
                    if (schemeField.type == org.apache.thrift.protocol.TType.DOUBLE) {
                        struct.max = iprot.readDouble();
                        struct.setMaxIsSet(true);
                    } else {
                        org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
                    }
                    break;
                case 3: // MEAN
                    if (schemeField.type == org.apache.thrift.protocol.TType.DOUBLE) {
                        struct.mean = iprot.readDouble();
                        struct.setMeanIsSet(true);
                    } else {
                        org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
                    }
                    break;
                case 4: // MIN
                    if (schemeField.type == org.apache.thrift.protocol.TType.DOUBLE) {
                        struct.min = iprot.readDouble();
                        struct.setMinIsSet(true);
                    } else {
                        org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
                    }
                    break;
                case 5: // STD_DEVIATION
                    if (schemeField.type == org.apache.thrift.protocol.TType.DOUBLE) {
                        struct.stdDeviation = iprot.readDouble();
                        struct.setStdDeviationIsSet(true);
                    } else {
                        org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
                    }
                    break;
                case 6: // SUM_OF_SQUARES
                    if (schemeField.type == org.apache.thrift.protocol.TType.DOUBLE) {
                        struct.sumOfSquares = iprot.readDouble();
                        struct.setSumOfSquaresIsSet(true);
                    } else {
                        org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
                    }
                    break;
                case 7: // TOTAL
                    if (schemeField.type == org.apache.thrift.protocol.TType.DOUBLE) {
                        struct.total = iprot.readDouble();
                        struct.setTotalIsSet(true);
                    } else {
                        org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
                    }
                    break;
                case 8: // VARIANCE
                    if (schemeField.type == org.apache.thrift.protocol.TType.DOUBLE) {
                        struct.variance = iprot.readDouble();
                        struct.setVarianceIsSet(true);
                    } else {
                        org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
                    }
                    break;
                default:
                    org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
                }
                iprot.readFieldEnd();
            }
            iprot.readStructEnd();

            // check for required fields of primitive type, which can't be checked in the validate method
            struct.validate();
        }

        public void write(org.apache.thrift.protocol.TProtocol oprot, StatisticalFacetResult struct)
                throws org.apache.thrift.TException {
            struct.validate();

            oprot.writeStructBegin(STRUCT_DESC);
            oprot.writeFieldBegin(COUNT_FIELD_DESC);
            oprot.writeI64(struct.count);
            oprot.writeFieldEnd();
            oprot.writeFieldBegin(MAX_FIELD_DESC);
            oprot.writeDouble(struct.max);
            oprot.writeFieldEnd();
            oprot.writeFieldBegin(MEAN_FIELD_DESC);
            oprot.writeDouble(struct.mean);
            oprot.writeFieldEnd();
            oprot.writeFieldBegin(MIN_FIELD_DESC);
            oprot.writeDouble(struct.min);
            oprot.writeFieldEnd();
            oprot.writeFieldBegin(STD_DEVIATION_FIELD_DESC);
            oprot.writeDouble(struct.stdDeviation);
            oprot.writeFieldEnd();
            oprot.writeFieldBegin(SUM_OF_SQUARES_FIELD_DESC);
            oprot.writeDouble(struct.sumOfSquares);
            oprot.writeFieldEnd();
            oprot.writeFieldBegin(TOTAL_FIELD_DESC);
            oprot.writeDouble(struct.total);
            oprot.writeFieldEnd();
            oprot.writeFieldBegin(VARIANCE_FIELD_DESC);
            oprot.writeDouble(struct.variance);
            oprot.writeFieldEnd();
            oprot.writeFieldStop();
            oprot.writeStructEnd();
        }

    }

    private static class StatisticalFacetResultTupleSchemeFactory implements SchemeFactory {
        public StatisticalFacetResultTupleScheme getScheme() {
            return new StatisticalFacetResultTupleScheme();
        }
    }

    private static class StatisticalFacetResultTupleScheme extends TupleScheme<StatisticalFacetResult> {

        @Override
        public void write(org.apache.thrift.protocol.TProtocol prot, StatisticalFacetResult struct)
                throws org.apache.thrift.TException {
            TTupleProtocol oprot = (TTupleProtocol) prot;
            BitSet optionals = new BitSet();
            if (struct.isSetCount()) {
                optionals.set(0);
            }
            if (struct.isSetMax()) {
                optionals.set(1);
            }
            if (struct.isSetMean()) {
                optionals.set(2);
            }
            if (struct.isSetMin()) {
                optionals.set(3);
            }
            if (struct.isSetStdDeviation()) {
                optionals.set(4);
            }
            if (struct.isSetSumOfSquares()) {
                optionals.set(5);
            }
            if (struct.isSetTotal()) {
                optionals.set(6);
            }
            if (struct.isSetVariance()) {
                optionals.set(7);
            }
            oprot.writeBitSet(optionals, 8);
            if (struct.isSetCount()) {
                oprot.writeI64(struct.count);
            }
            if (struct.isSetMax()) {
                oprot.writeDouble(struct.max);
            }
            if (struct.isSetMean()) {
                oprot.writeDouble(struct.mean);
            }
            if (struct.isSetMin()) {
                oprot.writeDouble(struct.min);
            }
            if (struct.isSetStdDeviation()) {
                oprot.writeDouble(struct.stdDeviation);
            }
            if (struct.isSetSumOfSquares()) {
                oprot.writeDouble(struct.sumOfSquares);
            }
            if (struct.isSetTotal()) {
                oprot.writeDouble(struct.total);
            }
            if (struct.isSetVariance()) {
                oprot.writeDouble(struct.variance);
            }
        }

        @Override
        public void read(org.apache.thrift.protocol.TProtocol prot, StatisticalFacetResult struct)
                throws org.apache.thrift.TException {
            TTupleProtocol iprot = (TTupleProtocol) prot;
            BitSet incoming = iprot.readBitSet(8);
            if (incoming.get(0)) {
                struct.count = iprot.readI64();
                struct.setCountIsSet(true);
            }
            if (incoming.get(1)) {
                struct.max = iprot.readDouble();
                struct.setMaxIsSet(true);
            }
            if (incoming.get(2)) {
                struct.mean = iprot.readDouble();
                struct.setMeanIsSet(true);
            }
            if (incoming.get(3)) {
                struct.min = iprot.readDouble();
                struct.setMinIsSet(true);
            }
            if (incoming.get(4)) {
                struct.stdDeviation = iprot.readDouble();
                struct.setStdDeviationIsSet(true);
            }
            if (incoming.get(5)) {
                struct.sumOfSquares = iprot.readDouble();
                struct.setSumOfSquaresIsSet(true);
            }
            if (incoming.get(6)) {
                struct.total = iprot.readDouble();
                struct.setTotalIsSet(true);
            }
            if (incoming.get(7)) {
                struct.variance = iprot.readDouble();
                struct.setVarianceIsSet(true);
            }
        }
    }

}