![JAR search and dependency download from the Maven repository](/logo.png)
com.oneops.infoblox.model.$AutoValue_Result Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infoblox-java Show documentation
Show all versions of infoblox-java Show documentation
A pure java API for Infoblox DNS appliance.
package com.oneops.infoblox.model;
import javax.annotation.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_Result extends Result {
private final T result;
$AutoValue_Result(
T result) {
if (result == null) {
throw new NullPointerException("Null result");
}
this.result = result;
}
@Override
public T result() {
return result;
}
@Override
public String toString() {
return "Result{"
+ "result=" + result
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Result) {
Result> that = (Result>) o;
return (this.result.equals(that.result()));
}
return false;
}
@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= this.result.hashCode();
return h;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy