public int compareTo(MoodleUrl2 other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; MoodleUrl2 typedOther = (MoodleUrl2) other; lastComparison = Boolean.valueOf(isSetName()).compareTo(typedOther.isSetName()); if (lastComparison != 0) { return lastComparison; } if (isSetName()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.name, typedOther.name); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetUrl()).compareTo(typedOther.isSetUrl()); if (lastComparison != 0) { return lastComparison; } if (isSetUrl()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.url, typedOther.url); if (lastComparison != 0) { return lastComparison; } } return 0; }
/** Performs a deep copy on <i>other</i>. */ public MoodleUrl2(MoodleUrl2 other) { if (other.isSetName()) { this.name = other.name; } if (other.isSetUrl()) { this.url = other.url; } }
public boolean equals(MoodleUrl2 that) { if (that == null) return false; boolean this_present_name = true && this.isSetName(); boolean that_present_name = true && that.isSetName(); if (this_present_name || that_present_name) { if (!(this_present_name && that_present_name)) return false; if (!this.name.equals(that.name)) return false; } boolean this_present_url = true && this.isSetUrl(); boolean that_present_url = true && that.isSetUrl(); if (this_present_url || that_present_url) { if (!(this_present_url && that_present_url)) return false; if (!this.url.equals(that.url)) return false; } return true; }