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

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

The 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 Tools.TnPartitionKey}.
 * 

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

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy