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

org.glowroot.central.repo.ImmutableFullQueryTextKey Maven / Gradle / Ivy

There is a newer version: 0.14.0-beta.3
Show newest version
package org.glowroot.central.repo;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.base.MoreObjects;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import com.google.errorprone.annotations.Var;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;
import org.immutables.value.Generated;

/**
 * Immutable implementation of {@link FullQueryTextDao.FullQueryTextKey}.
 * 

* Use the builder to create immutable instances: * {@code ImmutableFullQueryTextKey.builder()}. * Use the static factory method to create immutable instances: * {@code ImmutableFullQueryTextKey.of()}. */ @Generated(from = "FullQueryTextDao.FullQueryTextKey", generator = "Immutables") @SuppressWarnings({"all"}) @ParametersAreNonnullByDefault @javax.annotation.Generated("org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue final class ImmutableFullQueryTextKey implements FullQueryTextDao.FullQueryTextKey { private final String agentId; private final String fullTextSha1; private ImmutableFullQueryTextKey(String agentId, String fullTextSha1) { this.agentId = Objects.requireNonNull(agentId, "agentId"); this.fullTextSha1 = Objects.requireNonNull(fullTextSha1, "fullTextSha1"); } private ImmutableFullQueryTextKey(ImmutableFullQueryTextKey original, String agentId, String fullTextSha1) { this.agentId = agentId; this.fullTextSha1 = fullTextSha1; } /** * @return The value of the {@code agentId} attribute */ @JsonProperty("agentId") @Override public String agentId() { return agentId; } /** * @return The value of the {@code fullTextSha1} attribute */ @JsonProperty("fullTextSha1") @Override public String fullTextSha1() { return fullTextSha1; } /** * Copy the current immutable object by setting a value for the {@link FullQueryTextDao.FullQueryTextKey#agentId() agentId} attribute. * An equals check used to prevent copying of the same value by returning {@code this}. * @param value A new value for agentId * @return A modified copy of the {@code this} object */ public final ImmutableFullQueryTextKey withAgentId(String value) { String newValue = Objects.requireNonNull(value, "agentId"); if (this.agentId.equals(newValue)) return this; return new ImmutableFullQueryTextKey(this, newValue, this.fullTextSha1); } /** * Copy the current immutable object by setting a value for the {@link FullQueryTextDao.FullQueryTextKey#fullTextSha1() fullTextSha1} attribute. * An equals check used to prevent copying of the same value by returning {@code this}. * @param value A new value for fullTextSha1 * @return A modified copy of the {@code this} object */ public final ImmutableFullQueryTextKey withFullTextSha1(String value) { String newValue = Objects.requireNonNull(value, "fullTextSha1"); if (this.fullTextSha1.equals(newValue)) return this; return new ImmutableFullQueryTextKey(this, this.agentId, newValue); } /** * This instance is equal to all instances of {@code ImmutableFullQueryTextKey} that have equal attribute values. * @return {@code true} if {@code this} is equal to {@code another} instance */ @Override public boolean equals(@Nullable Object another) { if (this == another) return true; return another instanceof ImmutableFullQueryTextKey && equalTo((ImmutableFullQueryTextKey) another); } private boolean equalTo(ImmutableFullQueryTextKey another) { return agentId.equals(another.agentId) && fullTextSha1.equals(another.fullTextSha1); } /** * Computes a hash code from attributes: {@code agentId}, {@code fullTextSha1}. * @return hashCode value */ @Override public int hashCode() { @Var int h = 5381; h += (h << 5) + agentId.hashCode(); h += (h << 5) + fullTextSha1.hashCode(); return h; } /** * Prints the immutable value {@code FullQueryTextKey} with attribute values. * @return A string representation of the value */ @Override public String toString() { return MoreObjects.toStringHelper("FullQueryTextKey") .omitNullValues() .add("agentId", agentId) .add("fullTextSha1", fullTextSha1) .toString(); } /** * Utility type used to correctly read immutable object from JSON representation. * @deprecated Do not use this type directly, it exists only for the Jackson-binding infrastructure */ @Generated(from = "FullQueryTextDao.FullQueryTextKey", generator = "Immutables") @Deprecated @SuppressWarnings("Immutable") @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE) static final class Json implements FullQueryTextDao.FullQueryTextKey { @Nullable String agentId; @Nullable String fullTextSha1; @JsonProperty("agentId") public void setAgentId(String agentId) { this.agentId = agentId; } @JsonProperty("fullTextSha1") public void setFullTextSha1(String fullTextSha1) { this.fullTextSha1 = fullTextSha1; } @Override public String agentId() { throw new UnsupportedOperationException(); } @Override public String fullTextSha1() { throw new UnsupportedOperationException(); } } /** * @param json A JSON-bindable data structure * @return An immutable value type * @deprecated Do not use this method directly, it exists only for the Jackson-binding infrastructure */ @Deprecated @JsonCreator(mode = JsonCreator.Mode.DELEGATING) static ImmutableFullQueryTextKey fromJson(Json json) { ImmutableFullQueryTextKey.Builder builder = ImmutableFullQueryTextKey.builder(); if (json.agentId != null) { builder.agentId(json.agentId); } if (json.fullTextSha1 != null) { builder.fullTextSha1(json.fullTextSha1); } return builder.build(); } /** * Construct a new immutable {@code FullQueryTextKey} instance. * @param agentId The value for the {@code agentId} attribute * @param fullTextSha1 The value for the {@code fullTextSha1} attribute * @return An immutable FullQueryTextKey instance */ public static ImmutableFullQueryTextKey of(String agentId, String fullTextSha1) { return new ImmutableFullQueryTextKey(agentId, fullTextSha1); } /** * Creates an immutable copy of a {@link FullQueryTextDao.FullQueryTextKey} 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 FullQueryTextKey instance */ public static ImmutableFullQueryTextKey copyOf(FullQueryTextDao.FullQueryTextKey instance) { if (instance instanceof ImmutableFullQueryTextKey) { return (ImmutableFullQueryTextKey) instance; } return ImmutableFullQueryTextKey.builder() .copyFrom(instance) .build(); } /** * Creates a builder for {@link ImmutableFullQueryTextKey ImmutableFullQueryTextKey}. *

   * ImmutableFullQueryTextKey.builder()
   *    .agentId(String) // required {@link FullQueryTextDao.FullQueryTextKey#agentId() agentId}
   *    .fullTextSha1(String) // required {@link FullQueryTextDao.FullQueryTextKey#fullTextSha1() fullTextSha1}
   *    .build();
   * 
* @return A new ImmutableFullQueryTextKey builder */ public static ImmutableFullQueryTextKey.Builder builder() { return new ImmutableFullQueryTextKey.Builder(); } /** * Builds instances of type {@link ImmutableFullQueryTextKey ImmutableFullQueryTextKey}. * 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. */ @Generated(from = "FullQueryTextDao.FullQueryTextKey", generator = "Immutables") @NotThreadSafe public static final class Builder { private static final long INIT_BIT_AGENT_ID = 0x1L; private static final long INIT_BIT_FULL_TEXT_SHA1 = 0x2L; private long initBits = 0x3L; private @Nullable String agentId; private @Nullable String fullTextSha1; private Builder() { } /** * Fill a builder with attribute values from the provided {@code FullQueryTextKey} 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 */ @CanIgnoreReturnValue public final Builder copyFrom(FullQueryTextDao.FullQueryTextKey instance) { Objects.requireNonNull(instance, "instance"); agentId(instance.agentId()); fullTextSha1(instance.fullTextSha1()); return this; } /** * Initializes the value for the {@link FullQueryTextDao.FullQueryTextKey#agentId() agentId} attribute. * @param agentId The value for agentId * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder agentId(String agentId) { this.agentId = Objects.requireNonNull(agentId, "agentId"); initBits &= ~INIT_BIT_AGENT_ID; return this; } /** * Initializes the value for the {@link FullQueryTextDao.FullQueryTextKey#fullTextSha1() fullTextSha1} attribute. * @param fullTextSha1 The value for fullTextSha1 * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder fullTextSha1(String fullTextSha1) { this.fullTextSha1 = Objects.requireNonNull(fullTextSha1, "fullTextSha1"); initBits &= ~INIT_BIT_FULL_TEXT_SHA1; return this; } /** * Builds a new {@link ImmutableFullQueryTextKey ImmutableFullQueryTextKey}. * @return An immutable instance of FullQueryTextKey * @throws java.lang.IllegalStateException if any required attributes are missing */ public ImmutableFullQueryTextKey build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return new ImmutableFullQueryTextKey(null, agentId, fullTextSha1); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_AGENT_ID) != 0) attributes.add("agentId"); if ((initBits & INIT_BIT_FULL_TEXT_SHA1) != 0) attributes.add("fullTextSha1"); return "Cannot build FullQueryTextKey, some of required attributes are not set " + attributes; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy