org.glowroot.agent.live.ImmutableUiAnalyzedMethod Maven / Gradle / Ivy
Show all versions of glowroot-agent-it-harness Show documentation
package org.glowroot.agent.live;
import org.glowroot.agent.shaded.com.fasterxml.jackson.annotation.JsonAutoDetect;
import org.glowroot.agent.shaded.com.fasterxml.jackson.annotation.JsonCreator;
import org.glowroot.agent.shaded.com.fasterxml.jackson.annotation.JsonProperty;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.base.MoreObjects;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.base.Objects;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.base.Preconditions;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.collect.ImmutableList;
import org.glowroot.agent.shaded.org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.errorprone.annotations.CanIgnoreReturnValue;
import org.glowroot.agent.shaded.org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.errorprone.annotations.Var;
import java.util.ArrayList;
import java.util.List;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.CheckReturnValue;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.ParametersAreNonnullByDefault;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.concurrent.Immutable;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.concurrent.NotThreadSafe;
import org.glowroot.agent.shaded.org.checkerframework.checker.nullness.qual.Nullable;
import org.immutables.value.Generated;
/**
* Immutable implementation of {@link ClasspathCache.UiAnalyzedMethod}.
*
* Use the builder to create immutable instances:
* {@code ImmutableUiAnalyzedMethod.builder()}.
*/
@Generated(from = "ClasspathCache.UiAnalyzedMethod", generator = "Immutables")
@SuppressWarnings({"all"})
@ParametersAreNonnullByDefault
@org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
@Immutable
@CheckReturnValue
final class ImmutableUiAnalyzedMethod
implements ClasspathCache.UiAnalyzedMethod {
private final String name;
private final ImmutableList parameterTypes;
private final String returnType;
private final int modifiers;
private final @Nullable String signature;
private final ImmutableList exceptions;
private transient final int hashCode;
private ImmutableUiAnalyzedMethod(
String name,
ImmutableList parameterTypes,
String returnType,
int modifiers,
@Nullable String signature,
ImmutableList exceptions) {
this.name = name;
this.parameterTypes = parameterTypes;
this.returnType = returnType;
this.modifiers = modifiers;
this.signature = signature;
this.exceptions = exceptions;
this.hashCode = computeHashCode();
}
/**
* @return The value of the {@code name} attribute
*/
@JsonProperty("name")
@Override
public String name() {
return name;
}
/**
* @return The value of the {@code parameterTypes} attribute
*/
@JsonProperty("parameterTypes")
@Override
public ImmutableList parameterTypes() {
return parameterTypes;
}
/**
* @return The value of the {@code returnType} attribute
*/
@JsonProperty("returnType")
@Override
public String returnType() {
return returnType;
}
/**
* @return The value of the {@code modifiers} attribute
*/
@JsonProperty("modifiers")
@Override
public int modifiers() {
return modifiers;
}
/**
* @return The value of the {@code signature} attribute
*/
@JsonProperty("signature")
@Override
public @Nullable String signature() {
return signature;
}
/**
* @return The value of the {@code exceptions} attribute
*/
@JsonProperty("exceptions")
@Override
public ImmutableList exceptions() {
return exceptions;
}
/**
* Copy the current immutable object by setting a value for the {@link ClasspathCache.UiAnalyzedMethod#name() name} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for name
* @return A modified copy of the {@code this} object
*/
public final ImmutableUiAnalyzedMethod withName(String value) {
String newValue = Preconditions.checkNotNull(value, "name");
if (this.name.equals(newValue)) return this;
return new ImmutableUiAnalyzedMethod(newValue, this.parameterTypes, this.returnType, this.modifiers, this.signature, this.exceptions);
}
/**
* Copy the current immutable object with elements that replace the content of {@link ClasspathCache.UiAnalyzedMethod#parameterTypes() parameterTypes}.
* @param elements The elements to set
* @return A modified copy of {@code this} object
*/
public final ImmutableUiAnalyzedMethod withParameterTypes(String... elements) {
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableUiAnalyzedMethod(this.name, newValue, this.returnType, this.modifiers, this.signature, this.exceptions);
}
/**
* Copy the current immutable object with elements that replace the content of {@link ClasspathCache.UiAnalyzedMethod#parameterTypes() parameterTypes}.
* A shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param elements An iterable of parameterTypes elements to set
* @return A modified copy of {@code this} object
*/
public final ImmutableUiAnalyzedMethod withParameterTypes(Iterable elements) {
if (this.parameterTypes == elements) return this;
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableUiAnalyzedMethod(this.name, newValue, this.returnType, this.modifiers, this.signature, this.exceptions);
}
/**
* Copy the current immutable object by setting a value for the {@link ClasspathCache.UiAnalyzedMethod#returnType() returnType} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for returnType
* @return A modified copy of the {@code this} object
*/
public final ImmutableUiAnalyzedMethod withReturnType(String value) {
String newValue = Preconditions.checkNotNull(value, "returnType");
if (this.returnType.equals(newValue)) return this;
return new ImmutableUiAnalyzedMethod(this.name, this.parameterTypes, newValue, this.modifiers, this.signature, this.exceptions);
}
/**
* Copy the current immutable object by setting a value for the {@link ClasspathCache.UiAnalyzedMethod#modifiers() modifiers} attribute.
* A value equality check is used to prevent copying of the same value by returning {@code this}.
* @param value A new value for modifiers
* @return A modified copy of the {@code this} object
*/
public final ImmutableUiAnalyzedMethod withModifiers(int value) {
if (this.modifiers == value) return this;
return new ImmutableUiAnalyzedMethod(this.name, this.parameterTypes, this.returnType, value, this.signature, this.exceptions);
}
/**
* Copy the current immutable object by setting a value for the {@link ClasspathCache.UiAnalyzedMethod#signature() signature} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for signature (can be {@code null})
* @return A modified copy of the {@code this} object
*/
public final ImmutableUiAnalyzedMethod withSignature(@Nullable String value) {
if (Objects.equal(this.signature, value)) return this;
return new ImmutableUiAnalyzedMethod(this.name, this.parameterTypes, this.returnType, this.modifiers, value, this.exceptions);
}
/**
* Copy the current immutable object with elements that replace the content of {@link ClasspathCache.UiAnalyzedMethod#exceptions() exceptions}.
* @param elements The elements to set
* @return A modified copy of {@code this} object
*/
public final ImmutableUiAnalyzedMethod withExceptions(String... elements) {
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableUiAnalyzedMethod(this.name, this.parameterTypes, this.returnType, this.modifiers, this.signature, newValue);
}
/**
* Copy the current immutable object with elements that replace the content of {@link ClasspathCache.UiAnalyzedMethod#exceptions() exceptions}.
* A shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param elements An iterable of exceptions elements to set
* @return A modified copy of {@code this} object
*/
public final ImmutableUiAnalyzedMethod withExceptions(Iterable elements) {
if (this.exceptions == elements) return this;
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableUiAnalyzedMethod(this.name, this.parameterTypes, this.returnType, this.modifiers, this.signature, newValue);
}
/**
* This instance is equal to all instances of {@code ImmutableUiAnalyzedMethod} that have equal attribute values.
* @return {@code true} if {@code this} is equal to {@code another} instance
*/
@Override
public boolean equals(@org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable Object another) {
if (this == another) return true;
return another instanceof ImmutableUiAnalyzedMethod
&& equalTo((ImmutableUiAnalyzedMethod) another);
}
private boolean equalTo(ImmutableUiAnalyzedMethod another) {
if (hashCode != another.hashCode) return false;
return name.equals(another.name)
&& parameterTypes.equals(another.parameterTypes)
&& returnType.equals(another.returnType)
&& modifiers == another.modifiers
&& Objects.equal(signature, another.signature)
&& exceptions.equals(another.exceptions);
}
/**
* Returns a precomputed-on-construction hash code from attributes: {@code name}, {@code parameterTypes}, {@code returnType}, {@code modifiers}, {@code signature}, {@code exceptions}.
* @return hashCode value
*/
@Override
public int hashCode() {
return hashCode;
}
private int computeHashCode() {
@Var int h = 5381;
h += (h << 5) + name.hashCode();
h += (h << 5) + parameterTypes.hashCode();
h += (h << 5) + returnType.hashCode();
h += (h << 5) + modifiers;
h += (h << 5) + Objects.hashCode(signature);
h += (h << 5) + exceptions.hashCode();
return h;
}
/**
* Prints the immutable value {@code UiAnalyzedMethod} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("UiAnalyzedMethod")
.omitNullValues()
.add("name", name)
.add("parameterTypes", parameterTypes)
.add("returnType", returnType)
.add("modifiers", modifiers)
.add("signature", signature)
.add("exceptions", exceptions)
.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
*/
@Generated(from = "ClasspathCache.UiAnalyzedMethod", generator = "Immutables")
@Deprecated
@SuppressWarnings("Immutable")
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json implements ClasspathCache.UiAnalyzedMethod {
@org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable String name;
@org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable ImmutableList parameterTypes = ImmutableList.of();
@org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable String returnType;
int modifiers;
boolean modifiersIsSet;
@org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable String signature;
@org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable ImmutableList exceptions = ImmutableList.of();
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
@JsonProperty("parameterTypes")
public void setParameterTypes(ImmutableList parameterTypes) {
this.parameterTypes = parameterTypes;
}
@JsonProperty("returnType")
public void setReturnType(String returnType) {
this.returnType = returnType;
}
@JsonProperty("modifiers")
public void setModifiers(int modifiers) {
this.modifiers = modifiers;
this.modifiersIsSet = true;
}
@JsonProperty("signature")
public void setSignature(@Nullable String signature) {
this.signature = signature;
}
@JsonProperty("exceptions")
public void setExceptions(ImmutableList exceptions) {
this.exceptions = exceptions;
}
@Override
public String name() { throw new UnsupportedOperationException(); }
@Override
public ImmutableList parameterTypes() { throw new UnsupportedOperationException(); }
@Override
public String returnType() { throw new UnsupportedOperationException(); }
@Override
public int modifiers() { throw new UnsupportedOperationException(); }
@Override
public String signature() { throw new UnsupportedOperationException(); }
@Override
public ImmutableList exceptions() { 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 ImmutableUiAnalyzedMethod fromJson(Json json) {
ImmutableUiAnalyzedMethod.Builder builder = ImmutableUiAnalyzedMethod.builder();
if (json.name != null) {
builder.name(json.name);
}
if (json.parameterTypes != null) {
builder.addAllParameterTypes(json.parameterTypes);
}
if (json.returnType != null) {
builder.returnType(json.returnType);
}
if (json.modifiersIsSet) {
builder.modifiers(json.modifiers);
}
if (json.signature != null) {
builder.signature(json.signature);
}
if (json.exceptions != null) {
builder.addAllExceptions(json.exceptions);
}
return builder.build();
}
/**
* Creates an immutable copy of a {@link ClasspathCache.UiAnalyzedMethod} 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 UiAnalyzedMethod instance
*/
public static ImmutableUiAnalyzedMethod copyOf(ClasspathCache.UiAnalyzedMethod instance) {
if (instance instanceof ImmutableUiAnalyzedMethod) {
return (ImmutableUiAnalyzedMethod) instance;
}
return ImmutableUiAnalyzedMethod.builder()
.copyFrom(instance)
.build();
}
/**
* Creates a builder for {@link ImmutableUiAnalyzedMethod ImmutableUiAnalyzedMethod}.
*
* ImmutableUiAnalyzedMethod.builder()
* .name(String) // required {@link ClasspathCache.UiAnalyzedMethod#name() name}
* .addParameterTypes|addAllParameterTypes(String) // {@link ClasspathCache.UiAnalyzedMethod#parameterTypes() parameterTypes} elements
* .returnType(String) // required {@link ClasspathCache.UiAnalyzedMethod#returnType() returnType}
* .modifiers(int) // required {@link ClasspathCache.UiAnalyzedMethod#modifiers() modifiers}
* .signature(String | null) // nullable {@link ClasspathCache.UiAnalyzedMethod#signature() signature}
* .addExceptions|addAllExceptions(String) // {@link ClasspathCache.UiAnalyzedMethod#exceptions() exceptions} elements
* .build();
*
* @return A new ImmutableUiAnalyzedMethod builder
*/
public static ImmutableUiAnalyzedMethod.Builder builder() {
return new ImmutableUiAnalyzedMethod.Builder();
}
/**
* Builds instances of type {@link ImmutableUiAnalyzedMethod ImmutableUiAnalyzedMethod}.
* 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.
*/
@Generated(from = "ClasspathCache.UiAnalyzedMethod", generator = "Immutables")
@NotThreadSafe
public static final class Builder {
private static final long INIT_BIT_NAME = 0x1L;
private static final long INIT_BIT_RETURN_TYPE = 0x2L;
private static final long INIT_BIT_MODIFIERS = 0x4L;
private long initBits = 0x7L;
private @org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable String name;
private ImmutableList.Builder parameterTypes = ImmutableList.builder();
private @org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable String returnType;
private int modifiers;
private @org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.Nullable String signature;
private ImmutableList.Builder exceptions = ImmutableList.builder();
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code UiAnalyzedMethod} instance.
* Regular attribute values will be replaced with those from the given instance.
* Absent optional values will not replace present values.
* Collection elements and entries will be added, not replaced.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder copyFrom(ClasspathCache.UiAnalyzedMethod instance) {
Preconditions.checkNotNull(instance, "instance");
name(instance.name());
addAllParameterTypes(instance.parameterTypes());
returnType(instance.returnType());
modifiers(instance.modifiers());
@Nullable String signatureValue = instance.signature();
if (signatureValue != null) {
signature(signatureValue);
}
addAllExceptions(instance.exceptions());
return this;
}
/**
* Initializes the value for the {@link ClasspathCache.UiAnalyzedMethod#name() name} attribute.
* @param name The value for name
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder name(String name) {
this.name = Preconditions.checkNotNull(name, "name");
initBits &= ~INIT_BIT_NAME;
return this;
}
/**
* Adds one element to {@link ClasspathCache.UiAnalyzedMethod#parameterTypes() parameterTypes} list.
* @param element A parameterTypes element
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder addParameterTypes(String element) {
this.parameterTypes.add(element);
return this;
}
/**
* Adds elements to {@link ClasspathCache.UiAnalyzedMethod#parameterTypes() parameterTypes} list.
* @param elements An array of parameterTypes elements
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder addParameterTypes(String... elements) {
this.parameterTypes.add(elements);
return this;
}
/**
* Sets or replaces all elements for {@link ClasspathCache.UiAnalyzedMethod#parameterTypes() parameterTypes} list.
* @param elements An iterable of parameterTypes elements
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder parameterTypes(Iterable elements) {
this.parameterTypes = ImmutableList.builder();
return addAllParameterTypes(elements);
}
/**
* Adds elements to {@link ClasspathCache.UiAnalyzedMethod#parameterTypes() parameterTypes} list.
* @param elements An iterable of parameterTypes elements
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder addAllParameterTypes(Iterable elements) {
this.parameterTypes.addAll(elements);
return this;
}
/**
* Initializes the value for the {@link ClasspathCache.UiAnalyzedMethod#returnType() returnType} attribute.
* @param returnType The value for returnType
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder returnType(String returnType) {
this.returnType = Preconditions.checkNotNull(returnType, "returnType");
initBits &= ~INIT_BIT_RETURN_TYPE;
return this;
}
/**
* Initializes the value for the {@link ClasspathCache.UiAnalyzedMethod#modifiers() modifiers} attribute.
* @param modifiers The value for modifiers
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder modifiers(int modifiers) {
this.modifiers = modifiers;
initBits &= ~INIT_BIT_MODIFIERS;
return this;
}
/**
* Initializes the value for the {@link ClasspathCache.UiAnalyzedMethod#signature() signature} attribute.
* @param signature The value for signature (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder signature(@Nullable String signature) {
this.signature = signature;
return this;
}
/**
* Adds one element to {@link ClasspathCache.UiAnalyzedMethod#exceptions() exceptions} list.
* @param element A exceptions element
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder addExceptions(String element) {
this.exceptions.add(element);
return this;
}
/**
* Adds elements to {@link ClasspathCache.UiAnalyzedMethod#exceptions() exceptions} list.
* @param elements An array of exceptions elements
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder addExceptions(String... elements) {
this.exceptions.add(elements);
return this;
}
/**
* Sets or replaces all elements for {@link ClasspathCache.UiAnalyzedMethod#exceptions() exceptions} list.
* @param elements An iterable of exceptions elements
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder exceptions(Iterable elements) {
this.exceptions = ImmutableList.builder();
return addAllExceptions(elements);
}
/**
* Adds elements to {@link ClasspathCache.UiAnalyzedMethod#exceptions() exceptions} list.
* @param elements An iterable of exceptions elements
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder addAllExceptions(Iterable elements) {
this.exceptions.addAll(elements);
return this;
}
/**
* Builds a new {@link ImmutableUiAnalyzedMethod ImmutableUiAnalyzedMethod}.
* @return An immutable instance of UiAnalyzedMethod
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public ImmutableUiAnalyzedMethod build() {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
return new ImmutableUiAnalyzedMethod(name, parameterTypes.build(), returnType, modifiers, signature, exceptions.build());
}
private String formatRequiredAttributesMessage() {
List attributes = new ArrayList();
if ((initBits & INIT_BIT_NAME) != 0) attributes.add("name");
if ((initBits & INIT_BIT_RETURN_TYPE) != 0) attributes.add("returnType");
if ((initBits & INIT_BIT_MODIFIERS) != 0) attributes.add("modifiers");
return "Cannot build UiAnalyzedMethod, some of required attributes are not set " + attributes;
}
}
}