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

org.glowroot.ui.ImmutableInstrumentationConfigRequest Maven / Gradle / Ivy

There is a newer version: 0.9.28
Show newest version
package org.glowroot.ui;

import org.glowroot.agent.shaded.fasterxml.jackson.annotation.JsonCreator;
import org.glowroot.agent.shaded.fasterxml.jackson.annotation.JsonProperty;
import org.glowroot.agent.shaded.google.common.base.MoreObjects;
import org.glowroot.agent.shaded.google.common.base.Optional;
import org.glowroot.agent.shaded.google.common.base.Preconditions;
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 InstrumentationConfigJsonService.InstrumentationConfigRequest}.
 * 

* Use builder to create immutable instances: * {@code ImmutableInstrumentationConfigRequest.builder()}. */ @SuppressWarnings("all") @ParametersAreNonnullByDefault @Generated({"Immutables.generator", "InstrumentationConfigJsonService.InstrumentationConfigRequest"}) @Immutable final class ImmutableInstrumentationConfigRequest implements InstrumentationConfigJsonService.InstrumentationConfigRequest { private final Optional version; private ImmutableInstrumentationConfigRequest(Optional version) { this.version = version; } /** * @return value of {@code version} attribute */ @JsonProperty @Override public Optional version() { return version; } /** * Copy current immutable object by setting present value for optional {@link InstrumentationConfigJsonService.InstrumentationConfigRequest#version() version}. * @param value value for version * @return modified copy of {@code this} object */ public final ImmutableInstrumentationConfigRequest withVersion(String value) { Optional newValue = Optional.of(value); return new ImmutableInstrumentationConfigRequest(newValue); } /** * Copy current immutable object by setting optional value for {@link InstrumentationConfigJsonService.InstrumentationConfigRequest#version() version}. * Shallow reference equality check on optional value is used to prevent copying of the same value by returning {@code this}. * @param optional value for version * @return modified copy of {@code this} object */ public final ImmutableInstrumentationConfigRequest withVersion(Optional optional) { if (this.version == optional) return this; Optional newValue = Preconditions.checkNotNull(optional); return new ImmutableInstrumentationConfigRequest(newValue); } /** * This instance is equal to instances of {@code ImmutableInstrumentationConfigRequest} with 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 ImmutableInstrumentationConfigRequest && equalTo((ImmutableInstrumentationConfigRequest) another); } private boolean equalTo(ImmutableInstrumentationConfigRequest another) { return version.equals(another.version); } /** * Computes hash code from attributes: {@code version}. * @return hashCode value */ @Override public int hashCode() { int h = 31; h = h * 17 + version.hashCode(); return h; } /** * Prints immutable value {@code InstrumentationConfigRequest...} with attribute values, * excluding any non-generated and auxiliary attributes. * @return string representation of value */ @Override public String toString() { return MoreObjects.toStringHelper("InstrumentationConfigRequest") .add("version", version) .toString(); } /** * Simple representation of this value type suitable Jackson binding * @deprecated Do not use this type directly, it exists only for Jackson-binding infrastructure */ @Deprecated static final class Json { @JsonProperty @Nullable Optional version; } /** * @param json JSON-bindable data structure * @return immutable value type * @deprecated Do not use this method directly, it exists only for Jackson-binding infrastructure */ @Deprecated @JsonCreator static ImmutableInstrumentationConfigRequest fromJson(Json json) { ImmutableInstrumentationConfigRequest.Builder builder = ImmutableInstrumentationConfigRequest.builder(); if (json.version != null) { builder.version(json.version); } return builder.build(); } /** * Creates immutable copy of {@link InstrumentationConfigJsonService.InstrumentationConfigRequest}. * Uses accessors to get values to initialize immutable instance. * If an instance is already immutable, it is returned as is. * @param instance instance to copy * @return copied immutable InstrumentationConfigRequest instance */ static ImmutableInstrumentationConfigRequest copyOf(InstrumentationConfigJsonService.InstrumentationConfigRequest instance) { if (instance instanceof ImmutableInstrumentationConfigRequest) { return (ImmutableInstrumentationConfigRequest) instance; } return ImmutableInstrumentationConfigRequest.builder() .copyFrom(instance) .build(); } /** * Creates builder for {@link org.glowroot.ui.ImmutableInstrumentationConfigRequest ImmutableInstrumentationConfigRequest}. * @return new ImmutableInstrumentationConfigRequest builder */ static ImmutableInstrumentationConfigRequest.Builder builder() { return new ImmutableInstrumentationConfigRequest.Builder(); } /** * Builds instances of {@link org.glowroot.ui.ImmutableInstrumentationConfigRequest ImmutableInstrumentationConfigRequest}. * Initialize attributes and then invoke {@link #build()} method to create * immutable instance. *

{@code Builder} is not thread safe and generally should not be stored in field or collection, * but used immediately to create instances. */ @NotThreadSafe static final class Builder { private Optional version = Optional.absent(); private Builder() {} /** * Fill builder with attribute values from provided {@link InstrumentationConfigJsonService.InstrumentationConfigRequest} instance. * Regular attribute values will be replaced with ones of an instance. * Instance's absent optional values will not replace present values. * @param instance instance to copy values from * @return {@code this} builder for chained invocation */ public final Builder copyFrom(InstrumentationConfigJsonService.InstrumentationConfigRequest instance) { Preconditions.checkNotNull(instance); Optional versionOptional = instance.version(); if (versionOptional.isPresent()) { version(versionOptional); } return this; } /** * Initializes present value for optional {@link InstrumentationConfigJsonService.InstrumentationConfigRequest#version() version}. * @param version value for version * @return {@code this} builder for chained invocation */ public final Builder version(String version) { this.version = Optional.of(version); return this; } /** * Initializes optional value for {@link InstrumentationConfigJsonService.InstrumentationConfigRequest#version() version}. * @param version value for version * @return {@code this} builder for chained invocation */ public final Builder version(Optional version) { this.version = Preconditions.checkNotNull(version); return this; } /** * Builds new {@link org.glowroot.ui.ImmutableInstrumentationConfigRequest ImmutableInstrumentationConfigRequest}. * @return immutable instance of InstrumentationConfigRequest * @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing */ public ImmutableInstrumentationConfigRequest build() throws IllegalStateException { return new ImmutableInstrumentationConfigRequest(version); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy