io.snappydata.thrift.SnappyException Maven / Gradle / Ivy
/**
* Autogenerated by Thrift Compiler (0.9.3)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package io.snappydata.thrift;
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"})
@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)", date = "2019-08-09")
public class SnappyException extends TException 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("SnappyException");
private static final org.apache.thrift.protocol.TField EXCEPTION_DATA_FIELD_DESC = new org.apache.thrift.protocol.TField("exceptionData", org.apache.thrift.protocol.TType.STRUCT, (short)1);
private static final org.apache.thrift.protocol.TField SERVER_INFO_FIELD_DESC = new org.apache.thrift.protocol.TField("serverInfo", org.apache.thrift.protocol.TType.STRING, (short)2);
private static final org.apache.thrift.protocol.TField NEXT_EXCEPTIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("nextExceptions", org.apache.thrift.protocol.TType.LIST, (short)3);
private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
static {
schemes.put(StandardScheme.class, new SnappyExceptionStandardSchemeFactory());
schemes.put(TupleScheme.class, new SnappyExceptionTupleSchemeFactory());
}
public SnappyExceptionData exceptionData; // required
public String serverInfo; // required
public List nextExceptions; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
EXCEPTION_DATA((short)1, "exceptionData"),
SERVER_INFO((short)2, "serverInfo"),
NEXT_EXCEPTIONS((short)3, "nextExceptions");
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: // EXCEPTION_DATA
return EXCEPTION_DATA;
case 2: // SERVER_INFO
return SERVER_INFO;
case 3: // NEXT_EXCEPTIONS
return NEXT_EXCEPTIONS;
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 _Fields optionals[] = {_Fields.NEXT_EXCEPTIONS};
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.EXCEPTION_DATA, new org.apache.thrift.meta_data.FieldMetaData("exceptionData", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, SnappyExceptionData.class)));
tmpMap.put(_Fields.SERVER_INFO, new org.apache.thrift.meta_data.FieldMetaData("serverInfo", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.NEXT_EXCEPTIONS, new org.apache.thrift.meta_data.FieldMetaData("nextExceptions", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, SnappyExceptionData.class))));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(SnappyException.class, metaDataMap);
}
public SnappyException() {
}
public SnappyException(
SnappyExceptionData exceptionData,
String serverInfo)
{
this();
this.exceptionData = exceptionData;
this.serverInfo = serverInfo;
}
/**
* Performs a deep copy on other.
*/
public SnappyException(SnappyException other) {
if (other.isSetExceptionData()) {
this.exceptionData = new SnappyExceptionData(other.exceptionData);
}
if (other.isSetServerInfo()) {
this.serverInfo = other.serverInfo;
}
if (other.isSetNextExceptions()) {
List __this__nextExceptions = new ArrayList(other.nextExceptions.size());
for (SnappyExceptionData other_element : other.nextExceptions) {
__this__nextExceptions.add(new SnappyExceptionData(other_element));
}
this.nextExceptions = __this__nextExceptions;
}
}
public SnappyException deepCopy() {
return new SnappyException(this);
}
@Override
public void clear() {
this.exceptionData = null;
this.serverInfo = null;
this.nextExceptions = null;
}
public SnappyExceptionData getExceptionData() {
return this.exceptionData;
}
public SnappyException setExceptionData(SnappyExceptionData exceptionData) {
this.exceptionData = exceptionData;
return this;
}
public void unsetExceptionData() {
this.exceptionData = null;
}
/** Returns true if field exceptionData is set (has been assigned a value) and false otherwise */
public boolean isSetExceptionData() {
return this.exceptionData != null;
}
public void setExceptionDataIsSet(boolean value) {
if (!value) {
this.exceptionData = null;
}
}
public String getServerInfo() {
return this.serverInfo;
}
public SnappyException setServerInfo(String serverInfo) {
this.serverInfo = serverInfo;
return this;
}
public void unsetServerInfo() {
this.serverInfo = null;
}
/** Returns true if field serverInfo is set (has been assigned a value) and false otherwise */
public boolean isSetServerInfo() {
return this.serverInfo != null;
}
public void setServerInfoIsSet(boolean value) {
if (!value) {
this.serverInfo = null;
}
}
public int getNextExceptionsSize() {
return (this.nextExceptions == null) ? 0 : this.nextExceptions.size();
}
public java.util.Iterator getNextExceptionsIterator() {
return (this.nextExceptions == null) ? null : this.nextExceptions.iterator();
}
public void addToNextExceptions(SnappyExceptionData elem) {
if (this.nextExceptions == null) {
this.nextExceptions = new ArrayList();
}
this.nextExceptions.add(elem);
}
public List getNextExceptions() {
return this.nextExceptions;
}
public SnappyException setNextExceptions(List nextExceptions) {
this.nextExceptions = nextExceptions;
return this;
}
public void unsetNextExceptions() {
this.nextExceptions = null;
}
/** Returns true if field nextExceptions is set (has been assigned a value) and false otherwise */
public boolean isSetNextExceptions() {
return this.nextExceptions != null;
}
public void setNextExceptionsIsSet(boolean value) {
if (!value) {
this.nextExceptions = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case EXCEPTION_DATA:
if (value == null) {
unsetExceptionData();
} else {
setExceptionData((SnappyExceptionData)value);
}
break;
case SERVER_INFO:
if (value == null) {
unsetServerInfo();
} else {
setServerInfo((String)value);
}
break;
case NEXT_EXCEPTIONS:
if (value == null) {
unsetNextExceptions();
} else {
setNextExceptions((List)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case EXCEPTION_DATA:
return getExceptionData();
case SERVER_INFO:
return getServerInfo();
case NEXT_EXCEPTIONS:
return getNextExceptions();
}
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 EXCEPTION_DATA:
return isSetExceptionData();
case SERVER_INFO:
return isSetServerInfo();
case NEXT_EXCEPTIONS:
return isSetNextExceptions();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof SnappyException)
return this.equals((SnappyException)that);
return false;
}
public boolean equals(SnappyException that) {
if (that == null)
return false;
boolean this_present_exceptionData = true && this.isSetExceptionData();
boolean that_present_exceptionData = true && that.isSetExceptionData();
if (this_present_exceptionData || that_present_exceptionData) {
if (!(this_present_exceptionData && that_present_exceptionData))
return false;
if (!this.exceptionData.equals(that.exceptionData))
return false;
}
boolean this_present_serverInfo = true && this.isSetServerInfo();
boolean that_present_serverInfo = true && that.isSetServerInfo();
if (this_present_serverInfo || that_present_serverInfo) {
if (!(this_present_serverInfo && that_present_serverInfo))
return false;
if (!this.serverInfo.equals(that.serverInfo))
return false;
}
boolean this_present_nextExceptions = true && this.isSetNextExceptions();
boolean that_present_nextExceptions = true && that.isSetNextExceptions();
if (this_present_nextExceptions || that_present_nextExceptions) {
if (!(this_present_nextExceptions && that_present_nextExceptions))
return false;
if (!this.nextExceptions.equals(that.nextExceptions))
return false;
}
return true;
}
@Override
public int hashCode() {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy