nonimmutables.ImmutableLowercased Maven / Gradle / Ivy
Show all versions of value-fixture Show documentation
//-no-import-rewrite
package nonimmutables;
import java.lang.Object;
import java.lang.String;
import java.lang.Float;
import java.lang.Double;
/**
* Immutable implementation of {@link lowercased}.
*
* Use the builder to create immutable instances:
* {@code ImmutableLowercased.builder()}.
*/
@org.immutables.value.Generated(from = "lowercased", 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 ImmutableLowercased implements nonimmutables.lowercased {
private ImmutableLowercased(ImmutableLowercased.Builder builder) {
}
/**
* This instance is equal to all instances of {@code ImmutableLowercased} 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 ImmutableLowercased
&& equalTo(0, (ImmutableLowercased) another);
}
@SuppressWarnings("MethodCanBeStatic")
private boolean equalTo(int synthetic, ImmutableLowercased another) {
return true;
}
/**
* Returns a constant hash code value.
* @return hashCode value
*/
@Override
public int hashCode() {
return -1036595422;
}
/**
* Prints the immutable value {@code lowercased}.
* @return A string representation of the value
*/
@Override
public String toString() {
return "lowercased{}";
}
/**
* Creates an immutable copy of a {@link lowercased} 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 lowercased instance
*/
public static ImmutableLowercased copyOf(lowercased instance) {
if (instance instanceof ImmutableLowercased) {
return (ImmutableLowercased) instance;
}
return ImmutableLowercased.builder()
.from(instance)
.build();
}
/**
* Creates a builder for {@link ImmutableLowercased ImmutableLowercased}.
*
* ImmutableLowercased.builder()
* .build();
*
* @return A new ImmutableLowercased builder
*/
public static ImmutableLowercased.Builder builder() {
return new ImmutableLowercased.Builder();
}
/**
* Builds instances of type {@link ImmutableLowercased ImmutableLowercased}.
* 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 = "lowercased", generator = "Immutables")
@javax.annotation.concurrent.NotThreadSafe
public static final class Builder {
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code lowercased} 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(lowercased instance) {
java.util.Objects.requireNonNull(instance, "instance");
return this;
}
/**
* Builds a new {@link ImmutableLowercased ImmutableLowercased}.
* @return An immutable instance of lowercased
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public ImmutableLowercased build() {
return new ImmutableLowercased(this);
}
}
}