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

org.glowroot.central.v09support.ImmutableQueryPlan Maven / Gradle / Ivy

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

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 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 V09Support.QueryPlan}.
 * 

* Use the builder to create immutable instances: * {@code ImmutableQueryPlan.builder()}. */ @SuppressWarnings({"all"}) @ParametersAreNonnullByDefault @Generated({"Immutables.generator", "V09Support.QueryPlan"}) @Immutable @CheckReturnValue final class ImmutableQueryPlan implements V09Support.QueryPlan { private final @Nullable V09Support.Query queryV09; private final @Nullable V09Support.Query queryPostV09; private ImmutableQueryPlan( @Nullable V09Support.Query queryV09, @Nullable V09Support.Query queryPostV09) { this.queryV09 = queryV09; this.queryPostV09 = queryPostV09; } /** * @return The value of the {@code queryV09} attribute */ @JsonProperty("queryV09") @Override public @Nullable V09Support.Query queryV09() { return queryV09; } /** * @return The value of the {@code queryPostV09} attribute */ @JsonProperty("queryPostV09") @Override public @Nullable V09Support.Query queryPostV09() { return queryPostV09; } /** * Copy the current immutable object by setting a value for the {@link V09Support.QueryPlan#queryV09() queryV09} attribute. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value A new value for queryV09 (can be {@code null}) * @return A modified copy of the {@code this} object */ public final ImmutableQueryPlan withQueryV09(@Nullable V09Support.Query value) { if (this.queryV09 == value) return this; return new ImmutableQueryPlan(value, this.queryPostV09); } /** * Copy the current immutable object by setting a value for the {@link V09Support.QueryPlan#queryPostV09() queryPostV09} attribute. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value A new value for queryPostV09 (can be {@code null}) * @return A modified copy of the {@code this} object */ public final ImmutableQueryPlan withQueryPostV09(@Nullable V09Support.Query value) { if (this.queryPostV09 == value) return this; return new ImmutableQueryPlan(this.queryV09, value); } /** * This instance is equal to all instances of {@code ImmutableQueryPlan} 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 ImmutableQueryPlan && equalTo((ImmutableQueryPlan) another); } private boolean equalTo(ImmutableQueryPlan another) { return Objects.equals(queryV09, another.queryV09) && Objects.equals(queryPostV09, another.queryPostV09); } /** * Computes a hash code from attributes: {@code queryV09}, {@code queryPostV09}. * @return hashCode value */ @Override public int hashCode() { int h = 5381; h += (h << 5) + Objects.hashCode(queryV09); h += (h << 5) + Objects.hashCode(queryPostV09); return h; } /** * Prints the immutable value {@code QueryPlan} with attribute values. * @return A string representation of the value */ @Override public String toString() { return MoreObjects.toStringHelper("QueryPlan") .omitNullValues() .add("queryV09", queryV09) .add("queryPostV09", queryPostV09) .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 V09Support.QueryPlan { @Nullable V09Support.Query queryV09; @Nullable V09Support.Query queryPostV09; @JsonProperty("queryV09") public void setQueryV09(@Nullable V09Support.Query queryV09) { this.queryV09 = queryV09; } @JsonProperty("queryPostV09") public void setQueryPostV09(@Nullable V09Support.Query queryPostV09) { this.queryPostV09 = queryPostV09; } @Override public V09Support.Query queryV09() { throw new UnsupportedOperationException(); } @Override public V09Support.Query queryPostV09() { 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 ImmutableQueryPlan fromJson(Json json) { ImmutableQueryPlan.Builder builder = ImmutableQueryPlan.builder(); if (json.queryV09 != null) { builder.queryV09(json.queryV09); } if (json.queryPostV09 != null) { builder.queryPostV09(json.queryPostV09); } return builder.build(); } /** * Creates an immutable copy of a {@link V09Support.QueryPlan} 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 QueryPlan instance */ public static ImmutableQueryPlan copyOf(V09Support.QueryPlan instance) { if (instance instanceof ImmutableQueryPlan) { return (ImmutableQueryPlan) instance; } return ImmutableQueryPlan.builder() .copyFrom(instance) .build(); } /** * Creates a builder for {@link ImmutableQueryPlan ImmutableQueryPlan}. * @return A new ImmutableQueryPlan builder */ public static ImmutableQueryPlan.Builder builder() { return new ImmutableQueryPlan.Builder(); } /** * Builds instances of type {@link ImmutableQueryPlan ImmutableQueryPlan}. * 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 @Nullable V09Support.Query queryV09; private @Nullable V09Support.Query queryPostV09; private Builder() { } /** * Fill a builder with attribute values from the provided {@code QueryPlan} 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(V09Support.QueryPlan instance) { Objects.requireNonNull(instance, "instance"); @Nullable V09Support.Query queryV09Value = instance.queryV09(); if (queryV09Value != null) { queryV09(queryV09Value); } @Nullable V09Support.Query queryPostV09Value = instance.queryPostV09(); if (queryPostV09Value != null) { queryPostV09(queryPostV09Value); } return this; } /** * Initializes the value for the {@link V09Support.QueryPlan#queryV09() queryV09} attribute. * @param queryV09 The value for queryV09 (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder queryV09(@Nullable V09Support.Query queryV09) { this.queryV09 = queryV09; return this; } /** * Initializes the value for the {@link V09Support.QueryPlan#queryPostV09() queryPostV09} attribute. * @param queryPostV09 The value for queryPostV09 (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder queryPostV09(@Nullable V09Support.Query queryPostV09) { this.queryPostV09 = queryPostV09; return this; } /** * Builds a new {@link ImmutableQueryPlan ImmutableQueryPlan}. * @return An immutable instance of QueryPlan * @throws java.lang.IllegalStateException if any required attributes are missing */ public ImmutableQueryPlan build() { return new ImmutableQueryPlan(queryV09, queryPostV09); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy