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

everything.Sprat Maven / Gradle / Ivy

/**
 * Autogenerated by Thrift Compiler (1.0.0-dev)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package everything;

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 org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
/**
 * some union doc & "stuff"
 */
public class Sprat extends org.apache.thrift.TUnion {
  private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("Sprat");
  private static final org.apache.thrift.protocol.TField WOOBIE_FIELD_DESC = new org.apache.thrift.protocol.TField("woobie", org.apache.thrift.protocol.TType.STRING, (short)1);
  private static final org.apache.thrift.protocol.TField WOWZER_FIELD_DESC = new org.apache.thrift.protocol.TField("wowzer", org.apache.thrift.protocol.TType.I32, (short)2);
  private static final org.apache.thrift.protocol.TField WHEEE_FIELD_DESC = new org.apache.thrift.protocol.TField("wheee", org.apache.thrift.protocol.TType.I32, (short)3);

  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
  public enum _Fields implements org.apache.thrift.TFieldIdEnum {
    WOOBIE((short)1, "woobie"),
    WOWZER((short)2, "wowzer"),
    /**
     * 
     * @see Spinkle
     */
    WHEEE((short)3, "wheee");

    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: // WOOBIE
          return WOOBIE;
        case 2: // WOWZER
          return WOWZER;
        case 3: // WHEEE
          return WHEEE;
        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;
    }
  }

  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.WOOBIE, new org.apache.thrift.meta_data.FieldMetaData("woobie", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
    tmpMap.put(_Fields.WOWZER, new org.apache.thrift.meta_data.FieldMetaData("wowzer", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    tmpMap.put(_Fields.WHEEE, new org.apache.thrift.meta_data.FieldMetaData("wheee", org.apache.thrift.TFieldRequirementType.DEFAULT, 
        new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, Spinkle.class)));
    metaDataMap = Collections.unmodifiableMap(tmpMap);
    org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(Sprat.class, metaDataMap);
  }

  public Sprat() {
    super();
  }

  public Sprat(_Fields setField, Object value) {
    super(setField, value);
  }

  public Sprat(Sprat other) {
    super(other);
  }
  public Sprat deepCopy() {
    return new Sprat(this);
  }

  public static Sprat woobie(String value) {
    Sprat x = new Sprat();
    x.setWoobie(value);
    return x;
  }

  public static Sprat wowzer(int value) {
    Sprat x = new Sprat();
    x.setWowzer(value);
    return x;
  }

  public static Sprat wheee(Spinkle value) {
    Sprat x = new Sprat();
    x.setWheee(value);
    return x;
  }


  @Override
  protected void checkType(_Fields setField, Object value) throws ClassCastException {
    switch (setField) {
      case WOOBIE:
        if (value instanceof String) {
          break;
        }
        throw new ClassCastException("Was expecting value of type String for field 'woobie', but got " + value.getClass().getSimpleName());
      case WOWZER:
        if (value instanceof Integer) {
          break;
        }
        throw new ClassCastException("Was expecting value of type Integer for field 'wowzer', but got " + value.getClass().getSimpleName());
      case WHEEE:
        if (value instanceof Spinkle) {
          break;
        }
        throw new ClassCastException("Was expecting value of type Spinkle for field 'wheee', but got " + value.getClass().getSimpleName());
      default:
        throw new IllegalArgumentException("Unknown field id " + setField);
    }
  }

  @Override
  protected Object standardSchemeReadValue(org.apache.thrift.protocol.TProtocol iprot, org.apache.thrift.protocol.TField field) throws org.apache.thrift.TException {
    _Fields setField = _Fields.findByThriftId(field.id);
    if (setField != null) {
      switch (setField) {
        case WOOBIE:
          if (field.type == WOOBIE_FIELD_DESC.type) {
            String woobie;
            woobie = iprot.readString();
            return woobie;
          } else {
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
            return null;
          }
        case WOWZER:
          if (field.type == WOWZER_FIELD_DESC.type) {
            Integer wowzer;
            wowzer = iprot.readI32();
            return wowzer;
          } else {
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
            return null;
          }
        case WHEEE:
          if (field.type == WHEEE_FIELD_DESC.type) {
            Spinkle wheee;
            wheee = everything.Spinkle.findByValue(iprot.readI32());
            return wheee;
          } else {
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
            return null;
          }
        default:
          throw new IllegalStateException("setField wasn't null, but didn't match any of the case statements!");
      }
    } else {
      org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
      return null;
    }
  }

  @Override
  protected void standardSchemeWriteValue(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
    switch (setField_) {
      case WOOBIE:
        String woobie = (String)value_;
        oprot.writeString(woobie);
        return;
      case WOWZER:
        Integer wowzer = (Integer)value_;
        oprot.writeI32(wowzer);
        return;
      case WHEEE:
        Spinkle wheee = (Spinkle)value_;
        oprot.writeI32(wheee.getValue());
        return;
      default:
        throw new IllegalStateException("Cannot write union with unknown field " + setField_);
    }
  }

  @Override
  protected Object tupleSchemeReadValue(org.apache.thrift.protocol.TProtocol iprot, short fieldID) throws org.apache.thrift.TException {
    _Fields setField = _Fields.findByThriftId(fieldID);
    if (setField != null) {
      switch (setField) {
        case WOOBIE:
          String woobie;
          woobie = iprot.readString();
          return woobie;
        case WOWZER:
          Integer wowzer;
          wowzer = iprot.readI32();
          return wowzer;
        case WHEEE:
          Spinkle wheee;
          wheee = everything.Spinkle.findByValue(iprot.readI32());
          return wheee;
        default:
          throw new IllegalStateException("setField wasn't null, but didn't match any of the case statements!");
      }
    } else {
      throw new TProtocolException("Couldn't find a field with field id " + fieldID);
    }
  }

  @Override
  protected void tupleSchemeWriteValue(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
    switch (setField_) {
      case WOOBIE:
        String woobie = (String)value_;
        oprot.writeString(woobie);
        return;
      case WOWZER:
        Integer wowzer = (Integer)value_;
        oprot.writeI32(wowzer);
        return;
      case WHEEE:
        Spinkle wheee = (Spinkle)value_;
        oprot.writeI32(wheee.getValue());
        return;
      default:
        throw new IllegalStateException("Cannot write union with unknown field " + setField_);
    }
  }

  @Override
  protected org.apache.thrift.protocol.TField getFieldDesc(_Fields setField) {
    switch (setField) {
      case WOOBIE:
        return WOOBIE_FIELD_DESC;
      case WOWZER:
        return WOWZER_FIELD_DESC;
      case WHEEE:
        return WHEEE_FIELD_DESC;
      default:
        throw new IllegalArgumentException("Unknown field id " + setField);
    }
  }

  @Override
  protected org.apache.thrift.protocol.TStruct getStructDesc() {
    return STRUCT_DESC;
  }

  @Override
  protected _Fields enumForId(short id) {
    return _Fields.findByThriftIdOrThrow(id);
  }

  public _Fields fieldForId(int fieldId) {
    return _Fields.findByThriftId(fieldId);
  }


  public String getWoobie() {
    if (getSetField() == _Fields.WOOBIE) {
      return (String)getFieldValue();
    } else {
      throw new RuntimeException("Cannot get field 'woobie' because union is currently set to " + getFieldDesc(getSetField()).name);
    }
  }

  public void setWoobie(String value) {
    if (value == null) throw new NullPointerException();
    setField_ = _Fields.WOOBIE;
    value_ = value;
  }

  public int getWowzer() {
    if (getSetField() == _Fields.WOWZER) {
      return (Integer)getFieldValue();
    } else {
      throw new RuntimeException("Cannot get field 'wowzer' because union is currently set to " + getFieldDesc(getSetField()).name);
    }
  }

  public void setWowzer(int value) {
    setField_ = _Fields.WOWZER;
    value_ = value;
  }

  /**
   * 
   * @see Spinkle
   */
  public Spinkle getWheee() {
    if (getSetField() == _Fields.WHEEE) {
      return (Spinkle)getFieldValue();
    } else {
      throw new RuntimeException("Cannot get field 'wheee' because union is currently set to " + getFieldDesc(getSetField()).name);
    }
  }

  /**
   * 
   * @see Spinkle
   */
  public void setWheee(Spinkle value) {
    if (value == null) throw new NullPointerException();
    setField_ = _Fields.WHEEE;
    value_ = value;
  }

  public boolean isSetWoobie() {
    return setField_ == _Fields.WOOBIE;
  }


  public boolean isSetWowzer() {
    return setField_ == _Fields.WOWZER;
  }


  public boolean isSetWheee() {
    return setField_ == _Fields.WHEEE;
  }


  public boolean equals(Object other) {
    if (other instanceof Sprat) {
      return equals((Sprat)other);
    } else {
      return false;
    }
  }

  public boolean equals(Sprat other) {
    return other != null && getSetField() == other.getSetField() && getFieldValue().equals(other.getFieldValue());
  }

  @Override
  public int compareTo(Sprat other) {
    int lastComparison = org.apache.thrift.TBaseHelper.compareTo(getSetField(), other.getSetField());
    if (lastComparison == 0) {
      return org.apache.thrift.TBaseHelper.compareTo(getFieldValue(), other.getFieldValue());
    }
    return lastComparison;
  }


  @Override
  public int hashCode() {
    List list = new ArrayList();
    list.add(this.getClass().getName());
    org.apache.thrift.TFieldIdEnum setField = getSetField();
    if (setField != null) {
      list.add(setField.getThriftFieldId());
      Object value = getFieldValue();
      if (value instanceof org.apache.thrift.TEnum) {
        list.add(((org.apache.thrift.TEnum)getFieldValue()).getValue());
      } else {
        list.add(value);
      }
    }
    return list.hashCode();
  }
  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 {
      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);
    }
  }


}