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