
org.jclouds.azurecompute.arm.domain.AutoValue_AvailabilitySet_SKU Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclouds-shaded Show documentation
Show all versions of jclouds-shaded Show documentation
Provides a shaded jclouds with relocated guava and guice
The newest version!
package org.jclouds.azurecompute.arm.domain;
import javax.annotation.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_AvailabilitySet_SKU extends AvailabilitySet.SKU {
private final AvailabilitySet.AvailabilitySetType type;
AutoValue_AvailabilitySet_SKU(
AvailabilitySet.AvailabilitySetType type) {
if (type == null) {
throw new NullPointerException("Null type");
}
this.type = type;
}
@Override
public AvailabilitySet.AvailabilitySetType type() {
return type;
}
@Override
public String toString() {
return "SKU{"
+ "type=" + type
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof AvailabilitySet.SKU) {
AvailabilitySet.SKU that = (AvailabilitySet.SKU) o;
return (this.type.equals(that.type()));
}
return false;
}
@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= this.type.hashCode();
return h;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy