All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nonimmutables.ImmutableLowercased Maven / Gradle / Ivy

//-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()}. */ @SuppressWarnings("all") @javax.annotation.ParametersAreNonnullByDefault @javax.annotation.Generated({"Immutables.generator", "lowercased"}) @javax.annotation.concurrent.Immutable 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((ImmutableLowercased) another); } private boolean equalTo(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}. * @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. */ @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 */ public final Builder from(lowercased instance) { com.google.common.base.Preconditions.checkNotNull(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); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy