
org.jclouds.googlecomputeengine.domain.AutoValue_UrlMapValidateResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-compute-engine Show documentation
Show all versions of google-compute-engine Show documentation
jclouds components to access GoogleCompute
The newest version!
package org.jclouds.googlecomputeengine.domain;
import javax.annotation.processing.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_UrlMapValidateResult extends UrlMapValidateResult {
private final UrlMapValidateResult.UrlMapValidateResultInternal result;
AutoValue_UrlMapValidateResult(
UrlMapValidateResult.UrlMapValidateResultInternal result) {
if (result == null) {
throw new NullPointerException("Null result");
}
this.result = result;
}
@Override
public UrlMapValidateResult.UrlMapValidateResultInternal result() {
return result;
}
@Override
public String toString() {
return "UrlMapValidateResult{"
+ "result=" + result
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof UrlMapValidateResult) {
UrlMapValidateResult that = (UrlMapValidateResult) o;
return (this.result.equals(that.result()));
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= result.hashCode();
return h$;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy