
edu.stanford.protege.webprotege.merge.AutoValue_ComputeProjectMergeResult Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.merge;
import edu.stanford.protege.webprotege.diff.DiffElement;
import java.util.List;
import javax.annotation.processing.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_ComputeProjectMergeResult extends ComputeProjectMergeResult {
private final List> diff;
AutoValue_ComputeProjectMergeResult(
List> diff) {
if (diff == null) {
throw new NullPointerException("Null diff");
}
this.diff = diff;
}
@Override
public List> getDiff() {
return diff;
}
@Override
public String toString() {
return "ComputeProjectMergeResult{"
+ "diff=" + diff
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof ComputeProjectMergeResult) {
ComputeProjectMergeResult that = (ComputeProjectMergeResult) o;
return this.diff.equals(that.getDiff());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= diff.hashCode();
return h$;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy