dev.cel.common.values.AutoValue_DurationValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime Show documentation
Show all versions of runtime Show documentation
Common Expression Language Runtime for Java
package dev.cel.common.values;
import java.time.Duration;
import org.jspecify.nullness.Nullable;
// Generated by com.google.auto.value.processor.AutoValueProcessor
final class AutoValue_DurationValue extends DurationValue {
private final Duration value;
AutoValue_DurationValue(
Duration value) {
if (value == null) {
throw new NullPointerException("Null value");
}
this.value = value;
}
@Override
public Duration value() {
return value;
}
@Override
public String toString() {
return "DurationValue{"
+ "value=" + value
+ "}";
}
@Override
public boolean equals(@Nullable Object o) {
if (o == this) {
return true;
}
if (o instanceof DurationValue) {
DurationValue that = (DurationValue) o;
return this.value.equals(that.value());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= value.hashCode();
return h$;
}
}