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

org.glowroot.ui.ImmutableGaugeConfigDto 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.Objects;
import org.glowroot.agent.shaded.google.common.base.Optional;
import org.glowroot.agent.shaded.google.common.base.Preconditions;
import org.glowroot.agent.shaded.google.common.collect.ImmutableList;
import org.glowroot.agent.shaded.google.common.collect.Lists;
import java.util.List;
import javax.annotation.Generated;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;
import org.glowroot.common.config.GaugeConfig;

/**
 * Immutable implementation of {@link GaugeConfigJsonService.GaugeConfigDto}.
 * 

* Use builder to create immutable instances: * {@code ImmutableGaugeConfigDto.builder()}. */ @SuppressWarnings("all") @ParametersAreNonnullByDefault @Generated({"Immutables.generator", "GaugeConfigJsonService.GaugeConfigDto"}) @Immutable final class ImmutableGaugeConfigDto extends GaugeConfigJsonService.GaugeConfigDto { private final @Nullable String display; private final String mbeanObjectName; private final ImmutableList mbeanAttributes; private final Optional version; private ImmutableGaugeConfigDto( @Nullable String display, String mbeanObjectName, ImmutableList mbeanAttributes, Optional version) { this.display = display; this.mbeanObjectName = mbeanObjectName; this.mbeanAttributes = mbeanAttributes; this.version = version; } /** * @return value of {@code display} attribute */ @JsonProperty @Override @Nullable String display() { return display; } /** * @return value of {@code mbeanObjectName} attribute */ @JsonProperty @Override String mbeanObjectName() { return mbeanObjectName; } /** * @return value of {@code mbeanAttributes} attribute */ @JsonProperty @Override ImmutableList mbeanAttributes() { return mbeanAttributes; } /** * @return value of {@code version} attribute */ @JsonProperty @Override Optional version() { return version; } /** * Copy current immutable object by setting value for {@link GaugeConfigJsonService.GaugeConfigDto#display() display}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value new value for display, can be {@code null} * @return modified copy of the {@code this} object */ public final ImmutableGaugeConfigDto withDisplay(@Nullable String value) { if (this.display == value) return this; @Nullable String newValue = value; return new ImmutableGaugeConfigDto(newValue, this.mbeanObjectName, this.mbeanAttributes, this.version); } /** * Copy current immutable object by setting value for {@link GaugeConfigJsonService.GaugeConfigDto#mbeanObjectName() mbeanObjectName}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value new value for mbeanObjectName * @return modified copy of the {@code this} object */ public final ImmutableGaugeConfigDto withMbeanObjectName(String value) { if (this.mbeanObjectName == value) return this; String newValue = Preconditions.checkNotNull(value); return new ImmutableGaugeConfigDto(this.display, newValue, this.mbeanAttributes, this.version); } /** * Copy current immutable object with elements that replace content of {@link GaugeConfigJsonService.GaugeConfigDto#mbeanAttributes() mbeanAttributes}. * @param elements elements to set * @return modified copy of {@code this} object */ public final ImmutableGaugeConfigDto withMbeanAttributes(GaugeConfig.MBeanAttribute... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableGaugeConfigDto(this.display, this.mbeanObjectName, newValue, this.version); } /** * Copy current immutable object with elements that replace content of {@link GaugeConfigJsonService.GaugeConfigDto#mbeanAttributes() mbeanAttributes}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param elements iterable of mbeanAttributes elements to set * @return modified copy of {@code this} object */ public final ImmutableGaugeConfigDto withMbeanAttributes(Iterable elements) { if (this.mbeanAttributes == elements) return this; ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableGaugeConfigDto(this.display, this.mbeanObjectName, newValue, this.version); } /** * Copy current immutable object by setting present value for optional {@link GaugeConfigJsonService.GaugeConfigDto#version() version}. * @param value value for version * @return modified copy of {@code this} object */ public final ImmutableGaugeConfigDto withVersion(String value) { Optional newValue = Optional.of(value); return new ImmutableGaugeConfigDto(this.display, this.mbeanObjectName, this.mbeanAttributes, newValue); } /** * Copy current immutable object by setting optional value for {@link GaugeConfigJsonService.GaugeConfigDto#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 ImmutableGaugeConfigDto withVersion(Optional optional) { if (this.version == optional) return this; Optional newValue = Preconditions.checkNotNull(optional); return new ImmutableGaugeConfigDto(this.display, this.mbeanObjectName, this.mbeanAttributes, newValue); } /** * This instance is equal to instances of {@code ImmutableGaugeConfigDto} 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 ImmutableGaugeConfigDto && equalTo((ImmutableGaugeConfigDto) another); } private boolean equalTo(ImmutableGaugeConfigDto another) { return Objects.equal(display, another.display) && mbeanObjectName.equals(another.mbeanObjectName) && mbeanAttributes.equals(another.mbeanAttributes) && version.equals(another.version); } /** * Computes hash code from attributes: {@code display}, {@code mbeanObjectName}, {@code mbeanAttributes}, {@code version}. * @return hashCode value */ @Override public int hashCode() { int h = 31; h = h * 17 + Objects.hashCode(display); h = h * 17 + mbeanObjectName.hashCode(); h = h * 17 + mbeanAttributes.hashCode(); h = h * 17 + version.hashCode(); return h; } /** * Prints immutable value {@code GaugeConfigDto...} with attribute values, * excluding any non-generated and auxiliary attributes. * @return string representation of value */ @Override public String toString() { return MoreObjects.toStringHelper("GaugeConfigDto") .add("display", display) .add("mbeanObjectName", mbeanObjectName) .add("mbeanAttributes", mbeanAttributes) .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 String display; @JsonProperty @Nullable String mbeanObjectName; @JsonProperty @Nullable ImmutableList mbeanAttributes; @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 ImmutableGaugeConfigDto fromJson(Json json) { ImmutableGaugeConfigDto.Builder builder = ImmutableGaugeConfigDto.builder(); if (json.display != null) { builder.display(json.display); } if (json.mbeanObjectName != null) { builder.mbeanObjectName(json.mbeanObjectName); } if (json.mbeanAttributes != null) { builder.addAllMbeanAttributes(json.mbeanAttributes); } if (json.version != null) { builder.version(json.version); } return builder.build(); } /** * Creates immutable copy of {@link GaugeConfigJsonService.GaugeConfigDto}. * 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 GaugeConfigDto instance */ static ImmutableGaugeConfigDto copyOf(GaugeConfigJsonService.GaugeConfigDto instance) { if (instance instanceof ImmutableGaugeConfigDto) { return (ImmutableGaugeConfigDto) instance; } return ImmutableGaugeConfigDto.builder() .copyFrom(instance) .build(); } /** * Creates builder for {@link org.glowroot.ui.ImmutableGaugeConfigDto ImmutableGaugeConfigDto}. * @return new ImmutableGaugeConfigDto builder */ static ImmutableGaugeConfigDto.Builder builder() { return new ImmutableGaugeConfigDto.Builder(); } /** * Builds instances of {@link org.glowroot.ui.ImmutableGaugeConfigDto ImmutableGaugeConfigDto}. * 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 static final long INIT_BIT_MBEAN_OBJECT_NAME = 0x1L; private long initBits = 0x1; private @Nullable String display; private @Nullable String mbeanObjectName; private ImmutableList.Builder mbeanAttributesBuilder = ImmutableList.builder(); private Optional version = Optional.absent(); private Builder() {} /** * Fill builder with attribute values from provided {@link GaugeConfigJsonService.GaugeConfigDto} instance. * Regular attribute values will be replaced with ones of an instance. * Instance's absent optional values will not replace present values. * Collection elements and entries will be added, not replaced. * @param instance instance to copy values from * @return {@code this} builder for chained invocation */ public final Builder copyFrom(GaugeConfigJsonService.GaugeConfigDto instance) { Preconditions.checkNotNull(instance); @Nullable String displayValue = instance.display(); if (displayValue != null) { display(displayValue); } mbeanObjectName(instance.mbeanObjectName()); addAllMbeanAttributes(instance.mbeanAttributes()); Optional versionOptional = instance.version(); if (versionOptional.isPresent()) { version(versionOptional); } return this; } /** * Initializes value for {@link GaugeConfigJsonService.GaugeConfigDto#display() display}. * @param display value for display, can be {@code null} * @return {@code this} builder for chained invocation */ public final Builder display(@Nullable String display) { this.display = display; return this; } /** * Initializes value for {@link GaugeConfigJsonService.GaugeConfigDto#mbeanObjectName() mbeanObjectName}. * @param mbeanObjectName value for mbeanObjectName * @return {@code this} builder for chained invocation */ public final Builder mbeanObjectName(String mbeanObjectName) { this.mbeanObjectName = Preconditions.checkNotNull(mbeanObjectName); initBits &= ~INIT_BIT_MBEAN_OBJECT_NAME; return this; } /** * Adds one element to {@link GaugeConfigJsonService.GaugeConfigDto#mbeanAttributes() mbeanAttributes} list. * @param element mbeanAttributes element * @return {@code this} builder for chained invocation */ public final Builder addMbeanAttributes(GaugeConfig.MBeanAttribute element) { mbeanAttributesBuilder.add(element); return this; } /** * Adds elements to {@link GaugeConfigJsonService.GaugeConfigDto#mbeanAttributes() mbeanAttributes} list. * @param elements array of mbeanAttributes elements * @return {@code this} builder for chained invocation */ public final Builder addMbeanAttributes(GaugeConfig.MBeanAttribute... elements) { mbeanAttributesBuilder.add(elements); return this; } /** * Sets or replaces all elements for {@link GaugeConfigJsonService.GaugeConfigDto#mbeanAttributes() mbeanAttributes} list. * @param elements iterable of mbeanAttributes elements * @return {@code this} builder for chained invocation */ public final Builder mbeanAttributes(Iterable elements) { mbeanAttributesBuilder = ImmutableList.builder(); return addAllMbeanAttributes(elements); } /** * Adds elements to {@link GaugeConfigJsonService.GaugeConfigDto#mbeanAttributes() mbeanAttributes} list. * @param elements iterable of mbeanAttributes elements * @return {@code this} builder for chained invocation */ public final Builder addAllMbeanAttributes(Iterable elements) { mbeanAttributesBuilder.addAll(elements); return this; } /** * Initializes present value for optional {@link GaugeConfigJsonService.GaugeConfigDto#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 GaugeConfigJsonService.GaugeConfigDto#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.ImmutableGaugeConfigDto ImmutableGaugeConfigDto}. * @return immutable instance of GaugeConfigDto * @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing */ public ImmutableGaugeConfigDto build() throws IllegalStateException { checkRequiredAttributes(); return new ImmutableGaugeConfigDto(display, mbeanObjectName, mbeanAttributesBuilder.build(), version); } private boolean mbeanObjectNameIsSet() { return (initBits & INIT_BIT_MBEAN_OBJECT_NAME) == 0; } private void checkRequiredAttributes() throws IllegalStateException { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } } private String formatRequiredAttributesMessage() { List attributes = Lists.newArrayList(); if (!mbeanObjectNameIsSet()) attributes.add("mbeanObjectName"); return "Cannot build GaugeConfigDto, some of required attributes are not set " + attributes; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy