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.common.collect.Lists;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import java.util.List;
import java.util.Objects;
import javax.annotation.CheckReturnValue;
import javax.annotation.Generated;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;

/**
 * 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()}. */ @SuppressWarnings({"all"}) @ParametersAreNonnullByDefault @Generated({"Immutables.generator", "FullQueryTextDao.FullQueryTextKey"}) @Immutable @CheckReturnValue final class ImmutableFullQueryTextKey implements FullQueryTextDao.FullQueryTextKey { private final String agentRollupId; private final String fullTextSha1; private ImmutableFullQueryTextKey(String agentRollupId, String fullTextSha1) { this.agentRollupId = Objects.requireNonNull(agentRollupId, "agentRollupId"); this.fullTextSha1 = Objects.requireNonNull(fullTextSha1, "fullTextSha1"); } private ImmutableFullQueryTextKey(ImmutableFullQueryTextKey original, String agentRollupId, String fullTextSha1) { this.agentRollupId = agentRollupId; this.fullTextSha1 = fullTextSha1; } /** * @return The value of the {@code agentRollupId} attribute */ @JsonProperty("agentRollupId") @Override public String agentRollupId() { return agentRollupId; } /** * @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#agentRollupId() agentRollupId} attribute. * An equals check used to prevent copying of the same value by returning {@code this}. * @param value A new value for agentRollupId * @return A modified copy of the {@code this} object */ public final ImmutableFullQueryTextKey withAgentRollupId(String value) { if (this.agentRollupId.equals(value)) return this; String newValue = Objects.requireNonNull(value, "agentRollupId"); 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) { if (this.fullTextSha1.equals(value)) return this; String newValue = Objects.requireNonNull(value, "fullTextSha1"); return new ImmutableFullQueryTextKey(this, this.agentRollupId, 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 agentRollupId.equals(another.agentRollupId) && fullTextSha1.equals(another.fullTextSha1); } /** * Computes a hash code from attributes: {@code agentRollupId}, {@code fullTextSha1}. * @return hashCode value */ @Override public int hashCode() { int h = 5381; h += (h << 5) + agentRollupId.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("agentRollupId", agentRollupId) .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 */ @Deprecated @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE) static final class Json implements FullQueryTextDao.FullQueryTextKey { @Nullable String agentRollupId; @Nullable String fullTextSha1; @JsonProperty("agentRollupId") public void setAgentRollupId(String agentRollupId) { this.agentRollupId = agentRollupId; } @JsonProperty("fullTextSha1") public void setFullTextSha1(String fullTextSha1) { this.fullTextSha1 = fullTextSha1; } @Override public String agentRollupId() { 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.agentRollupId != null) { builder.agentRollupId(json.agentRollupId); } if (json.fullTextSha1 != null) { builder.fullTextSha1(json.fullTextSha1); } return builder.build(); } /** * Construct a new immutable {@code FullQueryTextKey} instance. * @param agentRollupId The value for the {@code agentRollupId} attribute * @param fullTextSha1 The value for the {@code fullTextSha1} attribute * @return An immutable FullQueryTextKey instance */ public static ImmutableFullQueryTextKey of(String agentRollupId, String fullTextSha1) { return new ImmutableFullQueryTextKey(agentRollupId, 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}. * @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. */ @NotThreadSafe public static final class Builder { private static final long INIT_BIT_AGENT_ROLLUP_ID = 0x1L; private static final long INIT_BIT_FULL_TEXT_SHA1 = 0x2L; private long initBits = 0x3L; private @Nullable String agentRollupId; 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"); agentRollupId(instance.agentRollupId()); fullTextSha1(instance.fullTextSha1()); return this; } /** * Initializes the value for the {@link FullQueryTextDao.FullQueryTextKey#agentRollupId() agentRollupId} attribute. * @param agentRollupId The value for agentRollupId * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder agentRollupId(String agentRollupId) { this.agentRollupId = Objects.requireNonNull(agentRollupId, "agentRollupId"); initBits &= ~INIT_BIT_AGENT_ROLLUP_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, agentRollupId, fullTextSha1); } private String formatRequiredAttributesMessage() { List attributes = Lists.newArrayList(); if ((initBits & INIT_BIT_AGENT_ROLLUP_ID) != 0) attributes.add("agentRollupId"); 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