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