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

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

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 TraceAttributeNameDao.TraceAttributeNameKey}.
 * 

* Use the builder to create immutable instances: * {@code ImmutableTraceAttributeNameKey.builder()}. * Use the static factory method to create immutable instances: * {@code ImmutableTraceAttributeNameKey.of()}. */ @Generated(from = "TraceAttributeNameDao.TraceAttributeNameKey", generator = "Immutables") @SuppressWarnings({"all"}) @ParametersAreNonnullByDefault @javax.annotation.Generated("org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue final class ImmutableTraceAttributeNameKey implements TraceAttributeNameDao.TraceAttributeNameKey { private final String agentRollupId; private final String transactionType; private final String traceAttributeName; private ImmutableTraceAttributeNameKey( String agentRollupId, String transactionType, String traceAttributeName) { this.agentRollupId = Objects.requireNonNull(agentRollupId, "agentRollupId"); this.transactionType = Objects.requireNonNull(transactionType, "transactionType"); this.traceAttributeName = Objects.requireNonNull(traceAttributeName, "traceAttributeName"); } private ImmutableTraceAttributeNameKey( ImmutableTraceAttributeNameKey original, String agentRollupId, String transactionType, String traceAttributeName) { this.agentRollupId = agentRollupId; this.transactionType = transactionType; this.traceAttributeName = traceAttributeName; } /** * @return The value of the {@code agentRollupId} attribute */ @JsonProperty("agentRollupId") @Override public String agentRollupId() { return agentRollupId; } /** * @return The value of the {@code transactionType} attribute */ @JsonProperty("transactionType") @Override public String transactionType() { return transactionType; } /** * @return The value of the {@code traceAttributeName} attribute */ @JsonProperty("traceAttributeName") @Override public String traceAttributeName() { return traceAttributeName; } /** * Copy the current immutable object by setting a value for the {@link TraceAttributeNameDao.TraceAttributeNameKey#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 ImmutableTraceAttributeNameKey withAgentRollupId(String value) { String newValue = Objects.requireNonNull(value, "agentRollupId"); if (this.agentRollupId.equals(newValue)) return this; return new ImmutableTraceAttributeNameKey(this, newValue, this.transactionType, this.traceAttributeName); } /** * Copy the current immutable object by setting a value for the {@link TraceAttributeNameDao.TraceAttributeNameKey#transactionType() transactionType} attribute. * An equals check used to prevent copying of the same value by returning {@code this}. * @param value A new value for transactionType * @return A modified copy of the {@code this} object */ public final ImmutableTraceAttributeNameKey withTransactionType(String value) { String newValue = Objects.requireNonNull(value, "transactionType"); if (this.transactionType.equals(newValue)) return this; return new ImmutableTraceAttributeNameKey(this, this.agentRollupId, newValue, this.traceAttributeName); } /** * Copy the current immutable object by setting a value for the {@link TraceAttributeNameDao.TraceAttributeNameKey#traceAttributeName() traceAttributeName} attribute. * An equals check used to prevent copying of the same value by returning {@code this}. * @param value A new value for traceAttributeName * @return A modified copy of the {@code this} object */ public final ImmutableTraceAttributeNameKey withTraceAttributeName(String value) { String newValue = Objects.requireNonNull(value, "traceAttributeName"); if (this.traceAttributeName.equals(newValue)) return this; return new ImmutableTraceAttributeNameKey(this, this.agentRollupId, this.transactionType, newValue); } /** * This instance is equal to all instances of {@code ImmutableTraceAttributeNameKey} 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 ImmutableTraceAttributeNameKey && equalTo((ImmutableTraceAttributeNameKey) another); } private boolean equalTo(ImmutableTraceAttributeNameKey another) { return agentRollupId.equals(another.agentRollupId) && transactionType.equals(another.transactionType) && traceAttributeName.equals(another.traceAttributeName); } /** * Computes a hash code from attributes: {@code agentRollupId}, {@code transactionType}, {@code traceAttributeName}. * @return hashCode value */ @Override public int hashCode() { @Var int h = 5381; h += (h << 5) + agentRollupId.hashCode(); h += (h << 5) + transactionType.hashCode(); h += (h << 5) + traceAttributeName.hashCode(); return h; } /** * Prints the immutable value {@code TraceAttributeNameKey} with attribute values. * @return A string representation of the value */ @Override public String toString() { return MoreObjects.toStringHelper("TraceAttributeNameKey") .omitNullValues() .add("agentRollupId", agentRollupId) .add("transactionType", transactionType) .add("traceAttributeName", traceAttributeName) .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 = "TraceAttributeNameDao.TraceAttributeNameKey", generator = "Immutables") @Deprecated @SuppressWarnings("Immutable") @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE) static final class Json implements TraceAttributeNameDao.TraceAttributeNameKey { @Nullable String agentRollupId; @Nullable String transactionType; @Nullable String traceAttributeName; @JsonProperty("agentRollupId") public void setAgentRollupId(String agentRollupId) { this.agentRollupId = agentRollupId; } @JsonProperty("transactionType") public void setTransactionType(String transactionType) { this.transactionType = transactionType; } @JsonProperty("traceAttributeName") public void setTraceAttributeName(String traceAttributeName) { this.traceAttributeName = traceAttributeName; } @Override public String agentRollupId() { throw new UnsupportedOperationException(); } @Override public String transactionType() { throw new UnsupportedOperationException(); } @Override public String traceAttributeName() { 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 ImmutableTraceAttributeNameKey fromJson(Json json) { ImmutableTraceAttributeNameKey.Builder builder = ImmutableTraceAttributeNameKey.builder(); if (json.agentRollupId != null) { builder.agentRollupId(json.agentRollupId); } if (json.transactionType != null) { builder.transactionType(json.transactionType); } if (json.traceAttributeName != null) { builder.traceAttributeName(json.traceAttributeName); } return builder.build(); } /** * Construct a new immutable {@code TraceAttributeNameKey} instance. * @param agentRollupId The value for the {@code agentRollupId} attribute * @param transactionType The value for the {@code transactionType} attribute * @param traceAttributeName The value for the {@code traceAttributeName} attribute * @return An immutable TraceAttributeNameKey instance */ public static ImmutableTraceAttributeNameKey of(String agentRollupId, String transactionType, String traceAttributeName) { return new ImmutableTraceAttributeNameKey(agentRollupId, transactionType, traceAttributeName); } /** * Creates an immutable copy of a {@link TraceAttributeNameDao.TraceAttributeNameKey} 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 TraceAttributeNameKey instance */ public static ImmutableTraceAttributeNameKey copyOf(TraceAttributeNameDao.TraceAttributeNameKey instance) { if (instance instanceof ImmutableTraceAttributeNameKey) { return (ImmutableTraceAttributeNameKey) instance; } return ImmutableTraceAttributeNameKey.builder() .copyFrom(instance) .build(); } /** * Creates a builder for {@link ImmutableTraceAttributeNameKey ImmutableTraceAttributeNameKey}. *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy