
org.glowroot.common.live.ImmutableMBeanTreeRequest Maven / Gradle / Ivy
package org.glowroot.common.live;
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.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;
/**
* Immutable implementation of {@link LiveJvmService.MBeanTreeRequest}.
*
* Use builder to create immutable instances:
* {@code ImmutableMBeanTreeRequest.builder()}.
*/
@SuppressWarnings("all")
@ParametersAreNonnullByDefault
@Generated({"Immutables.generator", "LiveJvmService.MBeanTreeRequest"})
@Immutable
public final class ImmutableMBeanTreeRequest
implements LiveJvmService.MBeanTreeRequest {
private final String serverId;
private final ImmutableList expanded;
private ImmutableMBeanTreeRequest(String serverId, ImmutableList expanded) {
this.serverId = serverId;
this.expanded = expanded;
}
/**
* @return value of {@code serverId} attribute
*/
@JsonProperty
@Override
public String serverId() {
return serverId;
}
/**
* @return value of {@code expanded} attribute
*/
@JsonProperty
@Override
public ImmutableList expanded() {
return expanded;
}
/**
* Copy current immutable object by setting value for {@link LiveJvmService.MBeanTreeRequest#serverId() serverId}.
* Shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param value new value for serverId
* @return modified copy of the {@code this} object
*/
public final ImmutableMBeanTreeRequest withServerId(String value) {
if (this.serverId == value) return this;
String newValue = Preconditions.checkNotNull(value);
return new ImmutableMBeanTreeRequest(newValue, this.expanded);
}
/**
* Copy current immutable object with elements that replace content of {@link LiveJvmService.MBeanTreeRequest#expanded() expanded}.
* @param elements elements to set
* @return modified copy of {@code this} object
*/
public final ImmutableMBeanTreeRequest withExpanded(String... elements) {
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableMBeanTreeRequest(this.serverId, newValue);
}
/**
* Copy current immutable object with elements that replace content of {@link LiveJvmService.MBeanTreeRequest#expanded() expanded}.
* Shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param elements iterable of expanded elements to set
* @return modified copy of {@code this} object
*/
public final ImmutableMBeanTreeRequest withExpanded(Iterable elements) {
if (this.expanded == elements) return this;
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableMBeanTreeRequest(this.serverId, newValue);
}
/**
* This instance is equal to instances of {@code ImmutableMBeanTreeRequest} 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 ImmutableMBeanTreeRequest
&& equalTo((ImmutableMBeanTreeRequest) another);
}
private boolean equalTo(ImmutableMBeanTreeRequest another) {
return serverId.equals(another.serverId)
&& expanded.equals(another.expanded);
}
/**
* Computes hash code from attributes: {@code serverId}, {@code expanded}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 31;
h = h * 17 + serverId.hashCode();
h = h * 17 + expanded.hashCode();
return h;
}
/**
* Prints immutable value {@code MBeanTreeRequest...} with attribute values,
* excluding any non-generated and auxiliary attributes.
* @return string representation of value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("MBeanTreeRequest")
.add("serverId", serverId)
.add("expanded", expanded)
.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 serverId;
@JsonProperty
@Nullable List expanded;
}
/**
* @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 ImmutableMBeanTreeRequest fromJson(Json json) {
ImmutableMBeanTreeRequest.Builder builder = ImmutableMBeanTreeRequest.builder();
if (json.serverId != null) {
builder.serverId(json.serverId);
}
if (json.expanded != null) {
builder.addAllExpanded(json.expanded);
}
return builder.build();
}
/**
* Creates immutable copy of {@link LiveJvmService.MBeanTreeRequest}.
* 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 MBeanTreeRequest instance
*/
public static ImmutableMBeanTreeRequest copyOf(LiveJvmService.MBeanTreeRequest instance) {
if (instance instanceof ImmutableMBeanTreeRequest) {
return (ImmutableMBeanTreeRequest) instance;
}
return ImmutableMBeanTreeRequest.builder()
.copyFrom(instance)
.build();
}
/**
* Creates builder for {@link org.glowroot.common.live.ImmutableMBeanTreeRequest ImmutableMBeanTreeRequest}.
* @return new ImmutableMBeanTreeRequest builder
*/
public static ImmutableMBeanTreeRequest.Builder builder() {
return new ImmutableMBeanTreeRequest.Builder();
}
/**
* Builds instances of {@link org.glowroot.common.live.ImmutableMBeanTreeRequest ImmutableMBeanTreeRequest}.
* 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_SERVER_ID = 0x1L;
private long initBits = 0x1;
private @Nullable String serverId;
private ImmutableList.Builder expandedBuilder = ImmutableList.builder();
private Builder() {}
/**
* Fill builder with attribute values from provided {@link LiveJvmService.MBeanTreeRequest} 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(LiveJvmService.MBeanTreeRequest instance) {
Preconditions.checkNotNull(instance);
serverId(instance.serverId());
addAllExpanded(instance.expanded());
return this;
}
/**
* Initializes value for {@link LiveJvmService.MBeanTreeRequest#serverId() serverId}.
* @param serverId value for serverId
* @return {@code this} builder for chained invocation
*/
public final Builder serverId(String serverId) {
this.serverId = Preconditions.checkNotNull(serverId);
initBits &= ~INIT_BIT_SERVER_ID;
return this;
}
/**
* Adds one element to {@link LiveJvmService.MBeanTreeRequest#expanded() expanded} list.
* @param element expanded element
* @return {@code this} builder for chained invocation
*/
public final Builder addExpanded(String element) {
expandedBuilder.add(element);
return this;
}
/**
* Adds elements to {@link LiveJvmService.MBeanTreeRequest#expanded() expanded} list.
* @param elements array of expanded elements
* @return {@code this} builder for chained invocation
*/
public final Builder addExpanded(String... elements) {
expandedBuilder.add(elements);
return this;
}
/**
* Sets or replaces all elements for {@link LiveJvmService.MBeanTreeRequest#expanded() expanded} list.
* @param elements iterable of expanded elements
* @return {@code this} builder for chained invocation
*/
public final Builder expanded(Iterable elements) {
expandedBuilder = ImmutableList.builder();
return addAllExpanded(elements);
}
/**
* Adds elements to {@link LiveJvmService.MBeanTreeRequest#expanded() expanded} list.
* @param elements iterable of expanded elements
* @return {@code this} builder for chained invocation
*/
public final Builder addAllExpanded(Iterable elements) {
expandedBuilder.addAll(elements);
return this;
}
/**
* Builds new {@link org.glowroot.common.live.ImmutableMBeanTreeRequest ImmutableMBeanTreeRequest}.
* @return immutable instance of MBeanTreeRequest
* @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing
*/
public ImmutableMBeanTreeRequest build()
throws IllegalStateException {
checkRequiredAttributes();
return new ImmutableMBeanTreeRequest(serverId, expandedBuilder.build());
}
private boolean serverIdIsSet() {
return (initBits & INIT_BIT_SERVER_ID) == 0;
}
private void checkRequiredAttributes() throws IllegalStateException {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
}
private String formatRequiredAttributesMessage() {
List attributes = Lists.newArrayList();
if (!serverIdIsSet()) attributes.add("serverId");
return "Cannot build MBeanTreeRequest, some of required attributes are not set " + attributes;
}
}
}