/** * Autogenerated by Thrift Compiler (0.7.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING */ package backtype.storm.generated; 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; public class JavaObjectArg extends org.apache.thrift7.TUnion<JavaObjectArg, JavaObjectArg._Fields> { private static final org.apache.thrift7.protocol.TStruct STRUCT_DESC = new org.apache.thrift7.protocol.TStruct("JavaObjectArg"); private static final org.apache.thrift7.protocol.TField INT_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("int_arg", org.apache.thrift7.protocol.TType.I32, (short)1); private static final org.apache.thrift7.protocol.TField LONG_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("long_arg", org.apache.thrift7.protocol.TType.I64, (short)2); private static final org.apache.thrift7.protocol.TField STRING_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("string_arg", org.apache.thrift7.protocol.TType.STRING, (short)3); private static final org.apache.thrift7.protocol.TField BOOL_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("bool_arg", org.apache.thrift7.protocol.TType.BOOL, (short)4); private static final org.apache.thrift7.protocol.TField BINARY_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("binary_arg", org.apache.thrift7.protocol.TType.STRING, (short)5); private static final org.apache.thrift7.protocol.TField DOUBLE_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("double_arg", org.apache.thrift7.protocol.TType.DOUBLE, (short)6); /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift7.TFieldIdEnum { INT_ARG((short)1, "int_arg"), LONG_ARG((short)2, "long_arg"), STRING_ARG((short)3, "string_arg"), BOOL_ARG((short)4, "bool_arg"), BINARY_ARG((short)5, "binary_arg"), DOUBLE_ARG((short)6, "double_arg"); 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: // INT_ARG return INT_ARG; case 2: // LONG_ARG return LONG_ARG; case 3: // STRING_ARG return STRING_ARG; case 4: // BOOL_ARG return BOOL_ARG; case 5: // BINARY_ARG return BINARY_ARG; case 6: // DOUBLE_ARG return DOUBLE_ARG; 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.thrift7.meta_data.FieldMetaData> metaDataMap; static { Map<_Fields, org.apache.thrift7.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift7.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.INT_ARG, new org.apache.thrift7.meta_data.FieldMetaData("int_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.I32))); tmpMap.put(_Fields.LONG_ARG, new org.apache.thrift7.meta_data.FieldMetaData("long_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.I64))); tmpMap.put(_Fields.STRING_ARG, new org.apache.thrift7.meta_data.FieldMetaData("string_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.STRING))); tmpMap.put(_Fields.BOOL_ARG, new org.apache.thrift7.meta_data.FieldMetaData("bool_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.BOOL))); tmpMap.put(_Fields.BINARY_ARG, new org.apache.thrift7.meta_data.FieldMetaData("binary_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.STRING , true))); tmpMap.put(_Fields.DOUBLE_ARG, new org.apache.thrift7.meta_data.FieldMetaData("double_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.DOUBLE))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift7.meta_data.FieldMetaData.addStructMetaDataMap(JavaObjectArg.class, metaDataMap); } public JavaObjectArg() { super(); } public JavaObjectArg(_Fields setField, Object value) { super(setField, value); } public JavaObjectArg(JavaObjectArg other) { super(other); } public JavaObjectArg deepCopy() { return new JavaObjectArg(this); } public static JavaObjectArg int_arg(int value) { JavaObjectArg x = new JavaObjectArg(); x.set_int_arg(value); return x; } public static JavaObjectArg long_arg(long value) { JavaObjectArg x = new JavaObjectArg(); x.set_long_arg(value); return x; } public static JavaObjectArg string_arg(String value) { JavaObjectArg x = new JavaObjectArg(); x.set_string_arg(value); return x; } public static JavaObjectArg bool_arg(boolean value) { JavaObjectArg x = new JavaObjectArg(); x.set_bool_arg(value); return x; } public static JavaObjectArg binary_arg(ByteBuffer value) { JavaObjectArg x = new JavaObjectArg(); x.set_binary_arg(value); return x; } public static JavaObjectArg binary_arg(byte[] value) { JavaObjectArg x = new JavaObjectArg(); x.set_binary_arg(ByteBuffer.wrap(value)); return x; } public static JavaObjectArg double_arg(double value) { JavaObjectArg x = new JavaObjectArg(); x.set_double_arg(value); return x; } @Override protected void checkType(_Fields setField, Object value) throws ClassCastException { switch (setField) { case INT_ARG: if (value instanceof Integer) { break; } throw new ClassCastException("Was expecting value of type Integer for field 'int_arg', but got " + value.getClass().getSimpleName()); case LONG_ARG: if (value instanceof Long) { break; } throw new ClassCastException("Was expecting value of type Long for field 'long_arg', but got " + value.getClass().getSimpleName()); case STRING_ARG: if (value instanceof String) { break; } throw new ClassCastException("Was expecting value of type String for field 'string_arg', but got " + value.getClass().getSimpleName()); case BOOL_ARG: if (value instanceof Boolean) { break; } throw new ClassCastException("Was expecting value of type Boolean for field 'bool_arg', but got " + value.getClass().getSimpleName()); case BINARY_ARG: if (value instanceof ByteBuffer) { break; } throw new ClassCastException("Was expecting value of type ByteBuffer for field 'binary_arg', but got " + value.getClass().getSimpleName()); case DOUBLE_ARG: if (value instanceof Double) { break; } throw new ClassCastException("Was expecting value of type Double for field 'double_arg', but got " + value.getClass().getSimpleName()); default: throw new IllegalArgumentException("Unknown field id " + setField); } } @Override protected Object readValue(org.apache.thrift7.protocol.TProtocol iprot, org.apache.thrift7.protocol.TField field) throws org.apache.thrift7.TException { _Fields setField = _Fields.findByThriftId(field.id); if (setField != null) { switch (setField) { case INT_ARG: if (field.type == INT_ARG_FIELD_DESC.type) { Integer int_arg; int_arg = iprot.readI32(); return int_arg; } else { org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type); return null; } case LONG_ARG: if (field.type == LONG_ARG_FIELD_DESC.type) { Long long_arg; long_arg = iprot.readI64(); return long_arg; } else { org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type); return null; } case STRING_ARG: if (field.type == STRING_ARG_FIELD_DESC.type) { String string_arg; string_arg = iprot.readString(); return string_arg; } else { org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type); return null; } case BOOL_ARG: if (field.type == BOOL_ARG_FIELD_DESC.type) { Boolean bool_arg; bool_arg = iprot.readBool(); return bool_arg; } else { org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type); return null; } case BINARY_ARG: if (field.type == BINARY_ARG_FIELD_DESC.type) { ByteBuffer binary_arg; binary_arg = iprot.readBinary(); return binary_arg; } else { org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type); return null; } case DOUBLE_ARG: if (field.type == DOUBLE_ARG_FIELD_DESC.type) { Double double_arg; double_arg = iprot.readDouble(); return double_arg; } else { org.apache.thrift7.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.thrift7.protocol.TProtocolUtil.skip(iprot, field.type); return null; } } @Override protected void writeValue(org.apache.thrift7.protocol.TProtocol oprot) throws org.apache.thrift7.TException { switch (setField_) { case INT_ARG: Integer int_arg = (Integer)value_; oprot.writeI32(int_arg); return; case LONG_ARG: Long long_arg = (Long)value_; oprot.writeI64(long_arg); return; case STRING_ARG: String string_arg = (String)value_; oprot.writeString(string_arg); return; case BOOL_ARG: Boolean bool_arg = (Boolean)value_; oprot.writeBool(bool_arg); return; case BINARY_ARG: ByteBuffer binary_arg = (ByteBuffer)value_; oprot.writeBinary(binary_arg); return; case DOUBLE_ARG: Double double_arg = (Double)value_; oprot.writeDouble(double_arg); return; default: throw new IllegalStateException("Cannot write union with unknown field " + setField_); } } @Override protected org.apache.thrift7.protocol.TField getFieldDesc(_Fields setField) { switch (setField) { case INT_ARG: return INT_ARG_FIELD_DESC; case LONG_ARG: return LONG_ARG_FIELD_DESC; case STRING_ARG: return STRING_ARG_FIELD_DESC; case BOOL_ARG: return BOOL_ARG_FIELD_DESC; case BINARY_ARG: return BINARY_ARG_FIELD_DESC; case DOUBLE_ARG: return DOUBLE_ARG_FIELD_DESC; default: throw new IllegalArgumentException("Unknown field id " + setField); } } @Override protected org.apache.thrift7.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 int get_int_arg() { if (getSetField() == _Fields.INT_ARG) { return (Integer)getFieldValue(); } else { throw new RuntimeException("Cannot get field 'int_arg' because union is currently set to " + getFieldDesc(getSetField()).name); } } public void set_int_arg(int value) { setField_ = _Fields.INT_ARG; value_ = value; } public long get_long_arg() { if (getSetField() == _Fields.LONG_ARG) { return (Long)getFieldValue(); } else { throw new RuntimeException("Cannot get field 'long_arg' because union is currently set to " + getFieldDesc(getSetField()).name); } } public void set_long_arg(long value) { setField_ = _Fields.LONG_ARG; value_ = value; } public String get_string_arg() { if (getSetField() == _Fields.STRING_ARG) { return (String)getFieldValue(); } else { throw new RuntimeException("Cannot get field 'string_arg' because union is currently set to " + getFieldDesc(getSetField()).name); } } public void set_string_arg(String value) { if (value == null) throw new NullPointerException(); setField_ = _Fields.STRING_ARG; value_ = value; } public boolean get_bool_arg() { if (getSetField() == _Fields.BOOL_ARG) { return (Boolean)getFieldValue(); } else { throw new RuntimeException("Cannot get field 'bool_arg' because union is currently set to " + getFieldDesc(getSetField()).name); } } public void set_bool_arg(boolean value) { setField_ = _Fields.BOOL_ARG; value_ = value; } public byte[] get_binary_arg() { set_binary_arg(org.apache.thrift7.TBaseHelper.rightSize(buffer_for_binary_arg())); ByteBuffer b = buffer_for_binary_arg(); return b == null ? null : b.array(); } public ByteBuffer buffer_for_binary_arg() { if (getSetField() == _Fields.BINARY_ARG) { return (ByteBuffer)getFieldValue(); } else { throw new RuntimeException("Cannot get field 'binary_arg' because union is currently set to " + getFieldDesc(getSetField()).name); } } public void set_binary_arg(byte[] value) { set_binary_arg(ByteBuffer.wrap(value)); } public void set_binary_arg(ByteBuffer value) { if (value == null) throw new NullPointerException(); setField_ = _Fields.BINARY_ARG; value_ = value; } public double get_double_arg() { if (getSetField() == _Fields.DOUBLE_ARG) { return (Double)getFieldValue(); } else { throw new RuntimeException("Cannot get field 'double_arg' because union is currently set to " + getFieldDesc(getSetField()).name); } } public void set_double_arg(double value) { setField_ = _Fields.DOUBLE_ARG; value_ = value; } public boolean is_set_int_arg() { return setField_ == _Fields.INT_ARG; } public boolean is_set_long_arg() { return setField_ == _Fields.LONG_ARG; } public boolean is_set_string_arg() { return setField_ == _Fields.STRING_ARG; } public boolean is_set_bool_arg() { return setField_ == _Fields.BOOL_ARG; } public boolean is_set_binary_arg() { return setField_ == _Fields.BINARY_ARG; } public boolean is_set_double_arg() { return setField_ == _Fields.DOUBLE_ARG; } public boolean equals(Object other) { if (other instanceof JavaObjectArg) { return equals((JavaObjectArg)other); } else { return false; } } public boolean equals(JavaObjectArg other) { return other != null && getSetField() == other.getSetField() && getFieldValue().equals(other.getFieldValue()); } @Override public int compareTo(JavaObjectArg other) { int lastComparison = org.apache.thrift7.TBaseHelper.compareTo(getSetField(), other.getSetField()); if (lastComparison == 0) { return org.apache.thrift7.TBaseHelper.compareTo(getFieldValue(), other.getFieldValue()); } return lastComparison; } @Override public int hashCode() { HashCodeBuilder hcb = new HashCodeBuilder(); hcb.append(this.getClass().getName()); org.apache.thrift7.TFieldIdEnum setField = getSetField(); if (setField != null) { hcb.append(setField.getThriftFieldId()); Object value = getFieldValue(); if (value instanceof org.apache.thrift7.TEnum) { hcb.append(((org.apache.thrift7.TEnum)getFieldValue()).getValue()); } else { hcb.append(value); } } return hcb.toHashCode(); } private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { try { write(new org.apache.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(out))); } catch (org.apache.thrift7.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.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(in))); } catch (org.apache.thrift7.TException te) { throw new java.io.IOException(te); } } }