
org.glowroot.ui.ImmutableServerRollupLayout 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.ImmutableList;
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 LayoutService.ServerRollupLayout}.
*
* Use builder to create immutable instances:
* {@code ImmutableServerRollupLayout.builder()}.
*/
@SuppressWarnings("all")
@ParametersAreNonnullByDefault
@Generated({"Immutables.generator", "LayoutService.ServerRollupLayout"})
@Immutable
final class ImmutableServerRollupLayout implements LayoutService.ServerRollupLayout {
private final ImmutableList transactionTypes;
private ImmutableServerRollupLayout(ImmutableList transactionTypes) {
this.transactionTypes = transactionTypes;
}
/**
* @return value of {@code transactionTypes} attribute
*/
@JsonProperty
@Override
public ImmutableList transactionTypes() {
return transactionTypes;
}
/**
* Copy current immutable object with elements that replace content of {@link LayoutService.ServerRollupLayout#transactionTypes() transactionTypes}.
* @param elements elements to set
* @return modified copy of {@code this} object
*/
public final ImmutableServerRollupLayout withTransactionTypes(String... elements) {
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableServerRollupLayout(newValue);
}
/**
* Copy current immutable object with elements that replace content of {@link LayoutService.ServerRollupLayout#transactionTypes() transactionTypes}.
* Shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param elements iterable of transactionTypes elements to set
* @return modified copy of {@code this} object
*/
public final ImmutableServerRollupLayout withTransactionTypes(Iterable elements) {
if (this.transactionTypes == elements) return this;
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableServerRollupLayout(newValue);
}
/**
* This instance is equal to instances of {@code ImmutableServerRollupLayout} 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 ImmutableServerRollupLayout
&& equalTo((ImmutableServerRollupLayout) another);
}
private boolean equalTo(ImmutableServerRollupLayout another) {
return transactionTypes.equals(another.transactionTypes);
}
/**
* Computes hash code from attributes: {@code transactionTypes}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 31;
h = h * 17 + transactionTypes.hashCode();
return h;
}
/**
* Prints immutable value {@code ServerRollupLayout...} with attribute values,
* excluding any non-generated and auxiliary attributes.
* @return string representation of value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("ServerRollupLayout")
.add("transactionTypes", transactionTypes)
.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 List transactionTypes;
}
/**
* @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 ImmutableServerRollupLayout fromJson(Json json) {
ImmutableServerRollupLayout.Builder builder = ImmutableServerRollupLayout.builder();
if (json.transactionTypes != null) {
builder.addAllTransactionTypes(json.transactionTypes);
}
return builder.build();
}
/**
* Creates immutable copy of {@link LayoutService.ServerRollupLayout}.
* 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 ServerRollupLayout instance
*/
static ImmutableServerRollupLayout copyOf(LayoutService.ServerRollupLayout instance) {
if (instance instanceof ImmutableServerRollupLayout) {
return (ImmutableServerRollupLayout) instance;
}
return ImmutableServerRollupLayout.builder()
.copyFrom(instance)
.build();
}
/**
* Creates builder for {@link org.glowroot.ui.ImmutableServerRollupLayout ImmutableServerRollupLayout}.
* @return new ImmutableServerRollupLayout builder
*/
static ImmutableServerRollupLayout.Builder builder() {
return new ImmutableServerRollupLayout.Builder();
}
/**
* Builds instances of {@link org.glowroot.ui.ImmutableServerRollupLayout ImmutableServerRollupLayout}.
* 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 ImmutableList.Builder transactionTypesBuilder = ImmutableList.builder();
private Builder() {}
/**
* Fill builder with attribute values from provided {@link LayoutService.ServerRollupLayout} 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(LayoutService.ServerRollupLayout instance) {
Preconditions.checkNotNull(instance);
addAllTransactionTypes(instance.transactionTypes());
return this;
}
/**
* Adds one element to {@link LayoutService.ServerRollupLayout#transactionTypes() transactionTypes} list.
* @param element transactionTypes element
* @return {@code this} builder for chained invocation
*/
public final Builder addTransactionTypes(String element) {
transactionTypesBuilder.add(element);
return this;
}
/**
* Adds elements to {@link LayoutService.ServerRollupLayout#transactionTypes() transactionTypes} list.
* @param elements array of transactionTypes elements
* @return {@code this} builder for chained invocation
*/
public final Builder addTransactionTypes(String... elements) {
transactionTypesBuilder.add(elements);
return this;
}
/**
* Sets or replaces all elements for {@link LayoutService.ServerRollupLayout#transactionTypes() transactionTypes} list.
* @param elements iterable of transactionTypes elements
* @return {@code this} builder for chained invocation
*/
public final Builder transactionTypes(Iterable elements) {
transactionTypesBuilder = ImmutableList.builder();
return addAllTransactionTypes(elements);
}
/**
* Adds elements to {@link LayoutService.ServerRollupLayout#transactionTypes() transactionTypes} list.
* @param elements iterable of transactionTypes elements
* @return {@code this} builder for chained invocation
*/
public final Builder addAllTransactionTypes(Iterable elements) {
transactionTypesBuilder.addAll(elements);
return this;
}
/**
* Builds new {@link org.glowroot.ui.ImmutableServerRollupLayout ImmutableServerRollupLayout}.
* @return immutable instance of ServerRollupLayout
* @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing
*/
public ImmutableServerRollupLayout build()
throws IllegalStateException {
return new ImmutableServerRollupLayout(transactionTypesBuilder.build());
}
}
}