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

org.glowroot.common.config.ImmutableMBeanAttribute Maven / Gradle / Ivy

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

import org.glowroot.agent.shaded.fasterxml.jackson.annotation.JsonCreator;
import org.glowroot.agent.shaded.fasterxml.jackson.annotation.JsonInclude;
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.Preconditions;
import org.glowroot.agent.shaded.google.common.collect.Lists;
import org.glowroot.agent.shaded.google.common.primitives.Booleans;
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;

/**
 * Immutable implementation of {@link GaugeConfig.MBeanAttribute}.
 * 

* Use builder to create immutable instances: * {@code ImmutableMBeanAttribute.builder()}. * Use static factory method to create immutable instances: * {@code ImmutableMBeanAttribute.of()}. */ @SuppressWarnings("all") @ParametersAreNonnullByDefault @Generated({"Immutables.generator", "GaugeConfig.MBeanAttribute"}) @Immutable public final class ImmutableMBeanAttribute extends GaugeConfig.MBeanAttribute { private final String name; private final boolean counter; private ImmutableMBeanAttribute(String name, boolean counter) { this.name = Preconditions.checkNotNull(name); this.counter = counter; } private ImmutableMBeanAttribute(ImmutableMBeanAttribute.Builder builder) { this.name = builder.name; this.counter = builder.counterIsSet() ? builder.counter : super.counter(); } private ImmutableMBeanAttribute(ImmutableMBeanAttribute original, String name, boolean counter) { this.name = name; this.counter = counter; } /** * @return value of {@code name} attribute */ @JsonProperty @Override public String name() { return name; } /** * @return value of {@code counter} attribute */ @JsonProperty @JsonInclude(value = JsonInclude.Include.NON_EMPTY) @Override public boolean counter() { return counter; } /** * Copy current immutable object by setting value for {@link GaugeConfig.MBeanAttribute#name() name}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value new value for name * @return modified copy of the {@code this} object */ public final ImmutableMBeanAttribute withName(String value) { if (this.name == value) return this; String newValue = Preconditions.checkNotNull(value); return new ImmutableMBeanAttribute(this, newValue, this.counter); } /** * Copy current immutable object by setting value for {@link GaugeConfig.MBeanAttribute#counter() counter}. * Value equality check is used to prevent copying of the same value by returning {@code this}. * @param value new value for counter * @return modified copy of the {@code this} object */ public final ImmutableMBeanAttribute withCounter(boolean value) { if (this.counter == value) return this; boolean newValue = value; return new ImmutableMBeanAttribute(this, this.name, newValue); } /** * This instance is equal to instances of {@code ImmutableMBeanAttribute} 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 ImmutableMBeanAttribute && equalTo((ImmutableMBeanAttribute) another); } private boolean equalTo(ImmutableMBeanAttribute another) { return name.equals(another.name) && counter == another.counter; } /** * Computes hash code from attributes: {@code name}, {@code counter}. * @return hashCode value */ @Override public int hashCode() { int h = 31; h = h * 17 + name.hashCode(); h = h * 17 + Booleans.hashCode(counter); return h; } /** * Prints immutable value {@code MBeanAttribute...} with attribute values, * excluding any non-generated and auxiliary attributes. * @return string representation of value */ @Override public String toString() { return MoreObjects.toStringHelper("MBeanAttribute") .add("name", name) .add("counter", counter) .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 name; @JsonProperty @JsonInclude(value = JsonInclude.Include.NON_EMPTY) @Nullable Boolean counter; } /** * @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 ImmutableMBeanAttribute fromJson(Json json) { ImmutableMBeanAttribute.Builder builder = ImmutableMBeanAttribute.builder(); if (json.name != null) { builder.name(json.name); } if (json.counter != null) { builder.counter(json.counter); } return builder.build(); } /** * Construct new immutable {@code MBeanAttribute} instance. * @param name value for {@code name} * @param counter value for {@code counter} * @return immutable MBeanAttribute instance */ public static ImmutableMBeanAttribute of(String name, boolean counter) { return new ImmutableMBeanAttribute(name, counter); } /** * Creates immutable copy of {@link GaugeConfig.MBeanAttribute}. * 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 MBeanAttribute instance */ public static ImmutableMBeanAttribute copyOf(GaugeConfig.MBeanAttribute instance) { if (instance instanceof ImmutableMBeanAttribute) { return (ImmutableMBeanAttribute) instance; } return ImmutableMBeanAttribute.builder() .copyFrom(instance) .build(); } /** * Creates builder for {@link org.glowroot.common.config.ImmutableMBeanAttribute ImmutableMBeanAttribute}. * @return new ImmutableMBeanAttribute builder */ public static ImmutableMBeanAttribute.Builder builder() { return new ImmutableMBeanAttribute.Builder(); } /** * Builds instances of {@link org.glowroot.common.config.ImmutableMBeanAttribute ImmutableMBeanAttribute}. * 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 public static final class Builder { private static final long INIT_BIT_NAME = 0x1L; private static final long OPT_BIT_COUNTER = 0x1L; private long initBits = 0x1; private long optBits; private @Nullable String name; private boolean counter; private Builder() {} /** * Fill builder with attribute values from provided {@link GaugeConfig.MBeanAttribute} 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(GaugeConfig.MBeanAttribute instance) { Preconditions.checkNotNull(instance); name(instance.name()); counter(instance.counter()); return this; } /** * Initializes value for {@link GaugeConfig.MBeanAttribute#name() name}. * @param name value for name * @return {@code this} builder for chained invocation */ public final Builder name(String name) { this.name = Preconditions.checkNotNull(name); initBits &= ~INIT_BIT_NAME; return this; } /** * Initializes value for {@link GaugeConfig.MBeanAttribute#counter() counter}. *

If not set, this attribute will have default value returned by initializer of {@link GaugeConfig.MBeanAttribute#counter() counter}. * @param counter value for counter * @return {@code this} builder for chained invocation */ public final Builder counter(boolean counter) { this.counter = counter; optBits |= OPT_BIT_COUNTER; return this; } /** * Builds new {@link org.glowroot.common.config.ImmutableMBeanAttribute ImmutableMBeanAttribute}. * @return immutable instance of MBeanAttribute * @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing */ public ImmutableMBeanAttribute build() throws IllegalStateException { checkRequiredAttributes(); return new ImmutableMBeanAttribute(this); } private boolean counterIsSet() { return (optBits & OPT_BIT_COUNTER) != 0; } private boolean nameIsSet() { return (initBits & INIT_BIT_NAME) == 0; } private void checkRequiredAttributes() throws IllegalStateException { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } } private String formatRequiredAttributesMessage() { List attributes = Lists.newArrayList(); if (!nameIsSet()) attributes.add("name"); return "Cannot build MBeanAttribute, some of required attributes are not set " + attributes; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy