public boolean equals(HibariException that) { if (that == null) return false; boolean this_present_timestamp = true && this.isSetTimestamp(); boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; if (this.timestamp != that.timestamp) return false; } boolean this_present_what = true; boolean that_present_what = true; if (this_present_what || that_present_what) { if (!(this_present_what && that_present_what)) return false; if (this.what != that.what) return false; } boolean this_present_why = true && this.isSetWhy(); boolean that_present_why = true && that.isSetWhy(); if (this_present_why || that_present_why) { if (!(this_present_why && that_present_why)) return false; if (!this.why.equals(that.why)) return false; } return true; }
/** Performs a deep copy on <i>other</i>. */ public HibariException(HibariException other) { __isset_bit_vector.clear(); __isset_bit_vector.or(other.__isset_bit_vector); this.timestamp = other.timestamp; this.what = other.what; if (other.isSetWhy()) { this.why = other.why; } }
public int compareTo(HibariException other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; HibariException typedOther = (HibariException) other; lastComparison = Boolean.valueOf(isSetTimestamp()).compareTo(typedOther.isSetTimestamp()); if (lastComparison != 0) { return lastComparison; } if (isSetTimestamp()) { lastComparison = TBaseHelper.compareTo(this.timestamp, typedOther.timestamp); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetWhat()).compareTo(typedOther.isSetWhat()); if (lastComparison != 0) { return lastComparison; } if (isSetWhat()) { lastComparison = TBaseHelper.compareTo(this.what, typedOther.what); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetWhy()).compareTo(typedOther.isSetWhy()); if (lastComparison != 0) { return lastComparison; } if (isSetWhy()) { lastComparison = TBaseHelper.compareTo(this.why, typedOther.why); if (lastComparison != 0) { return lastComparison; } } return 0; }