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