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

org.glowroot.ui.ImmutableMethodSignaturesRequest 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.Preconditions;
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;

/**
 * Immutable implementation of {@link InstrumentationConfigJsonService.MethodSignaturesRequest}.
 * 

* Use builder to create immutable instances: * {@code ImmutableMethodSignaturesRequest.builder()}. */ @SuppressWarnings("all") @ParametersAreNonnullByDefault @Generated({"Immutables.generator", "InstrumentationConfigJsonService.MethodSignaturesRequest"}) @Immutable final class ImmutableMethodSignaturesRequest implements InstrumentationConfigJsonService.MethodSignaturesRequest { private final String className; private final String methodName; private ImmutableMethodSignaturesRequest(String className, String methodName) { this.className = className; this.methodName = methodName; } /** * @return value of {@code className} attribute */ @JsonProperty @Override public String className() { return className; } /** * @return value of {@code methodName} attribute */ @JsonProperty @Override public String methodName() { return methodName; } /** * Copy current immutable object by setting value for {@link InstrumentationConfigJsonService.MethodSignaturesRequest#className() className}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value new value for className * @return modified copy of the {@code this} object */ public final ImmutableMethodSignaturesRequest withClassName(String value) { if (this.className == value) return this; String newValue = Preconditions.checkNotNull(value); return new ImmutableMethodSignaturesRequest(newValue, this.methodName); } /** * Copy current immutable object by setting value for {@link InstrumentationConfigJsonService.MethodSignaturesRequest#methodName() methodName}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value new value for methodName * @return modified copy of the {@code this} object */ public final ImmutableMethodSignaturesRequest withMethodName(String value) { if (this.methodName == value) return this; String newValue = Preconditions.checkNotNull(value); return new ImmutableMethodSignaturesRequest(this.className, newValue); } /** * This instance is equal to instances of {@code ImmutableMethodSignaturesRequest} 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 ImmutableMethodSignaturesRequest && equalTo((ImmutableMethodSignaturesRequest) another); } private boolean equalTo(ImmutableMethodSignaturesRequest another) { return className.equals(another.className) && methodName.equals(another.methodName); } /** * Computes hash code from attributes: {@code className}, {@code methodName}. * @return hashCode value */ @Override public int hashCode() { int h = 31; h = h * 17 + className.hashCode(); h = h * 17 + methodName.hashCode(); return h; } /** * Prints immutable value {@code MethodSignaturesRequest...} with attribute values, * excluding any non-generated and auxiliary attributes. * @return string representation of value */ @Override public String toString() { return MoreObjects.toStringHelper("MethodSignaturesRequest") .add("className", className) .add("methodName", methodName) .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 className; @JsonProperty @Nullable String methodName; } /** * @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 ImmutableMethodSignaturesRequest fromJson(Json json) { ImmutableMethodSignaturesRequest.Builder builder = ImmutableMethodSignaturesRequest.builder(); if (json.className != null) { builder.className(json.className); } if (json.methodName != null) { builder.methodName(json.methodName); } return builder.build(); } /** * Creates immutable copy of {@link InstrumentationConfigJsonService.MethodSignaturesRequest}. * 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 MethodSignaturesRequest instance */ static ImmutableMethodSignaturesRequest copyOf(InstrumentationConfigJsonService.MethodSignaturesRequest instance) { if (instance instanceof ImmutableMethodSignaturesRequest) { return (ImmutableMethodSignaturesRequest) instance; } return ImmutableMethodSignaturesRequest.builder() .copyFrom(instance) .build(); } /** * Creates builder for {@link org.glowroot.ui.ImmutableMethodSignaturesRequest ImmutableMethodSignaturesRequest}. * @return new ImmutableMethodSignaturesRequest builder */ static ImmutableMethodSignaturesRequest.Builder builder() { return new ImmutableMethodSignaturesRequest.Builder(); } /** * Builds instances of {@link org.glowroot.ui.ImmutableMethodSignaturesRequest ImmutableMethodSignaturesRequest}. * 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_CLASS_NAME = 0x1L; private static final long INIT_BIT_METHOD_NAME = 0x2L; private long initBits = 0x3; private @Nullable String className; private @Nullable String methodName; private Builder() {} /** * Fill builder with attribute values from provided {@link InstrumentationConfigJsonService.MethodSignaturesRequest} 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.MethodSignaturesRequest instance) { Preconditions.checkNotNull(instance); className(instance.className()); methodName(instance.methodName()); return this; } /** * Initializes value for {@link InstrumentationConfigJsonService.MethodSignaturesRequest#className() className}. * @param className value for className * @return {@code this} builder for chained invocation */ public final Builder className(String className) { this.className = Preconditions.checkNotNull(className); initBits &= ~INIT_BIT_CLASS_NAME; return this; } /** * Initializes value for {@link InstrumentationConfigJsonService.MethodSignaturesRequest#methodName() methodName}. * @param methodName value for methodName * @return {@code this} builder for chained invocation */ public final Builder methodName(String methodName) { this.methodName = Preconditions.checkNotNull(methodName); initBits &= ~INIT_BIT_METHOD_NAME; return this; } /** * Builds new {@link org.glowroot.ui.ImmutableMethodSignaturesRequest ImmutableMethodSignaturesRequest}. * @return immutable instance of MethodSignaturesRequest * @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing */ public ImmutableMethodSignaturesRequest build() throws IllegalStateException { checkRequiredAttributes(); return new ImmutableMethodSignaturesRequest(className, methodName); } private boolean classNameIsSet() { return (initBits & INIT_BIT_CLASS_NAME) == 0; } private boolean methodNameIsSet() { return (initBits & INIT_BIT_METHOD_NAME) == 0; } private void checkRequiredAttributes() throws IllegalStateException { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } } private String formatRequiredAttributesMessage() { List attributes = Lists.newArrayList(); if (!classNameIsSet()) attributes.add("className"); if (!methodNameIsSet()) attributes.add("methodName"); return "Cannot build MethodSignaturesRequest, some of required attributes are not set " + attributes; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy