nonimmutables.Uppercase.ImmutableJust Maven / Gradle / Ivy
Show all versions of value-fixture Show documentation
//-no-import-rewrite
package nonimmutables.Uppercase;
import java.lang.Object;
import java.lang.String;
import java.lang.Float;
import java.lang.Double;
/**
* Immutable implementation of {@link Just}.
*
* Use the builder to create immutable instances:
* {@code ImmutableJust.builder()}.
*/
@org.immutables.value.Generated(from = "Just", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.ParametersAreNonnullByDefault
@javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor")
@javax.annotation.concurrent.Immutable
@javax.annotation.CheckReturnValue
public final class ImmutableJust implements nonimmutables.Uppercase.Just {
private ImmutableJust(ImmutableJust.Builder builder) {
}
/**
* This instance is equal to all instances of {@code ImmutableJust} that have equal attribute values.
* @return {@code true} if {@code this} is equal to {@code another} instance
*/
@Override
public boolean equals(@javax.annotation.Nullable Object another) {
if (this == another) return true;
return another instanceof ImmutableJust
&& equalTo(0, (ImmutableJust) another);
}
@SuppressWarnings("MethodCanBeStatic")
private boolean equalTo(int synthetic, ImmutableJust another) {
return true;
}
/**
* Returns a constant hash code value.
* @return hashCode value
*/
@Override
public int hashCode() {
return -2025427689;
}
/**
* Prints the immutable value {@code Just}.
* @return A string representation of the value
*/
@Override
public String toString() {
return "Just{}";
}
/**
* Creates an immutable copy of a {@link Just} value.
* Uses accessors to get values to initialize the new immutable instance.
* If an instance is already immutable, it is returned as is.
* @param instance The instance to copy
* @return A copied immutable Just instance
*/
public static ImmutableJust copyOf(Just instance) {
if (instance instanceof ImmutableJust) {
return (ImmutableJust) instance;
}
return ImmutableJust.builder()
.from(instance)
.build();
}
/**
* Creates a builder for {@link ImmutableJust ImmutableJust}.
*
* ImmutableJust.builder()
* .build();
*
* @return A new ImmutableJust builder
*/
public static ImmutableJust.Builder builder() {
return new ImmutableJust.Builder();
}
/**
* Builds instances of type {@link ImmutableJust ImmutableJust}.
* Initialize attributes and then invoke the {@link #build()} method to create an
* immutable instance.
* {@code Builder} is not thread-safe and generally should not be stored in a field or collection,
* but instead used immediately to create instances.
*/
@org.immutables.value.Generated(from = "Just", generator = "Immutables")
@javax.annotation.concurrent.NotThreadSafe
public static final class Builder {
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code Just} instance.
* Regular attribute values will be replaced with those from the given instance.
* Absent optional values will not replace present values.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
@com.google.errorprone.annotations.CanIgnoreReturnValue
public final Builder from(Just instance) {
java.util.Objects.requireNonNull(instance, "instance");
return this;
}
/**
* Builds a new {@link ImmutableJust ImmutableJust}.
* @return An immutable instance of Just
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public ImmutableJust build() {
return new ImmutableJust(this);
}
}
}