
org.glowroot.common.live.ImmutableErrorPoint 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.Lists;
import org.glowroot.agent.shaded.google.common.primitives.Longs;
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 LiveAggregateRepository.ErrorPoint}.
*
* Use builder to create immutable instances:
* {@code ImmutableErrorPoint.builder()}.
* Use static factory method to create immutable instances:
* {@code ImmutableErrorPoint.of()}.
*/
@SuppressWarnings("all")
@ParametersAreNonnullByDefault
@Generated({"Immutables.generator", "LiveAggregateRepository.ErrorPoint"})
@Immutable
public final class ImmutableErrorPoint implements LiveAggregateRepository.ErrorPoint {
private final long captureTime;
private final long errorCount;
private final long transactionCount;
private ImmutableErrorPoint(long captureTime, long errorCount, long transactionCount) {
this.captureTime = captureTime;
this.errorCount = errorCount;
this.transactionCount = transactionCount;
}
/**
* @return value of {@code captureTime} attribute
*/
@JsonProperty
@Override
public long captureTime() {
return captureTime;
}
/**
* @return value of {@code errorCount} attribute
*/
@JsonProperty
@Override
public long errorCount() {
return errorCount;
}
/**
* @return value of {@code transactionCount} attribute
*/
@JsonProperty
@Override
public long transactionCount() {
return transactionCount;
}
/**
* Copy current immutable object by setting value for {@link LiveAggregateRepository.ErrorPoint#captureTime() captureTime}.
* Value equality check is used to prevent copying of the same value by returning {@code this}.
* @param value new value for captureTime
* @return modified copy of the {@code this} object
*/
public final ImmutableErrorPoint withCaptureTime(long value) {
if (this.captureTime == value) return this;
long newValue = value;
return new ImmutableErrorPoint(newValue, this.errorCount, this.transactionCount);
}
/**
* Copy current immutable object by setting value for {@link LiveAggregateRepository.ErrorPoint#errorCount() errorCount}.
* Value equality check is used to prevent copying of the same value by returning {@code this}.
* @param value new value for errorCount
* @return modified copy of the {@code this} object
*/
public final ImmutableErrorPoint withErrorCount(long value) {
if (this.errorCount == value) return this;
long newValue = value;
return new ImmutableErrorPoint(this.captureTime, newValue, this.transactionCount);
}
/**
* Copy current immutable object by setting value for {@link LiveAggregateRepository.ErrorPoint#transactionCount() transactionCount}.
* Value equality check is used to prevent copying of the same value by returning {@code this}.
* @param value new value for transactionCount
* @return modified copy of the {@code this} object
*/
public final ImmutableErrorPoint withTransactionCount(long value) {
if (this.transactionCount == value) return this;
long newValue = value;
return new ImmutableErrorPoint(this.captureTime, this.errorCount, newValue);
}
/**
* This instance is equal to instances of {@code ImmutableErrorPoint} 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 ImmutableErrorPoint
&& equalTo((ImmutableErrorPoint) another);
}
private boolean equalTo(ImmutableErrorPoint another) {
return captureTime == another.captureTime
&& errorCount == another.errorCount
&& transactionCount == another.transactionCount;
}
/**
* Computes hash code from attributes: {@code captureTime}, {@code errorCount}, {@code transactionCount}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 31;
h = h * 17 + Longs.hashCode(captureTime);
h = h * 17 + Longs.hashCode(errorCount);
h = h * 17 + Longs.hashCode(transactionCount);
return h;
}
/**
* Prints immutable value {@code ErrorPoint...} with attribute values,
* excluding any non-generated and auxiliary attributes.
* @return string representation of value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("ErrorPoint")
.add("captureTime", captureTime)
.add("errorCount", errorCount)
.add("transactionCount", transactionCount)
.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 Long captureTime;
@JsonProperty
@Nullable Long errorCount;
@JsonProperty
@Nullable Long transactionCount;
}
/**
* @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 ImmutableErrorPoint fromJson(Json json) {
ImmutableErrorPoint.Builder builder = ImmutableErrorPoint.builder();
if (json.captureTime != null) {
builder.captureTime(json.captureTime);
}
if (json.errorCount != null) {
builder.errorCount(json.errorCount);
}
if (json.transactionCount != null) {
builder.transactionCount(json.transactionCount);
}
return builder.build();
}
/**
* Construct new immutable {@code ErrorPoint} instance.
* @param captureTime value for {@code captureTime}
* @param errorCount value for {@code errorCount}
* @param transactionCount value for {@code transactionCount}
* @return immutable ErrorPoint instance
*/
public static ImmutableErrorPoint of(long captureTime, long errorCount, long transactionCount) {
return new ImmutableErrorPoint(captureTime, errorCount, transactionCount);
}
/**
* Creates immutable copy of {@link LiveAggregateRepository.ErrorPoint}.
* 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 ErrorPoint instance
*/
public static ImmutableErrorPoint copyOf(LiveAggregateRepository.ErrorPoint instance) {
if (instance instanceof ImmutableErrorPoint) {
return (ImmutableErrorPoint) instance;
}
return ImmutableErrorPoint.builder()
.copyFrom(instance)
.build();
}
/**
* Creates builder for {@link org.glowroot.common.live.ImmutableErrorPoint ImmutableErrorPoint}.
* @return new ImmutableErrorPoint builder
*/
public static ImmutableErrorPoint.Builder builder() {
return new ImmutableErrorPoint.Builder();
}
/**
* Builds instances of {@link org.glowroot.common.live.ImmutableErrorPoint ImmutableErrorPoint}.
* 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_CAPTURE_TIME = 0x1L;
private static final long INIT_BIT_ERROR_COUNT = 0x2L;
private static final long INIT_BIT_TRANSACTION_COUNT = 0x4L;
private long initBits = 0x7;
private long captureTime;
private long errorCount;
private long transactionCount;
private Builder() {}
/**
* Fill builder with attribute values from provided {@link LiveAggregateRepository.ErrorPoint} 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(LiveAggregateRepository.ErrorPoint instance) {
Preconditions.checkNotNull(instance);
captureTime(instance.captureTime());
errorCount(instance.errorCount());
transactionCount(instance.transactionCount());
return this;
}
/**
* Initializes value for {@link LiveAggregateRepository.ErrorPoint#captureTime() captureTime}.
* @param captureTime value for captureTime
* @return {@code this} builder for chained invocation
*/
public final Builder captureTime(long captureTime) {
this.captureTime = captureTime;
initBits &= ~INIT_BIT_CAPTURE_TIME;
return this;
}
/**
* Initializes value for {@link LiveAggregateRepository.ErrorPoint#errorCount() errorCount}.
* @param errorCount value for errorCount
* @return {@code this} builder for chained invocation
*/
public final Builder errorCount(long errorCount) {
this.errorCount = errorCount;
initBits &= ~INIT_BIT_ERROR_COUNT;
return this;
}
/**
* Initializes value for {@link LiveAggregateRepository.ErrorPoint#transactionCount() transactionCount}.
* @param transactionCount value for transactionCount
* @return {@code this} builder for chained invocation
*/
public final Builder transactionCount(long transactionCount) {
this.transactionCount = transactionCount;
initBits &= ~INIT_BIT_TRANSACTION_COUNT;
return this;
}
/**
* Builds new {@link org.glowroot.common.live.ImmutableErrorPoint ImmutableErrorPoint}.
* @return immutable instance of ErrorPoint
* @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing
*/
public ImmutableErrorPoint build()
throws IllegalStateException {
checkRequiredAttributes();
return new ImmutableErrorPoint(captureTime, errorCount, transactionCount);
}
private boolean captureTimeIsSet() {
return (initBits & INIT_BIT_CAPTURE_TIME) == 0;
}
private boolean errorCountIsSet() {
return (initBits & INIT_BIT_ERROR_COUNT) == 0;
}
private boolean transactionCountIsSet() {
return (initBits & INIT_BIT_TRANSACTION_COUNT) == 0;
}
private void checkRequiredAttributes() throws IllegalStateException {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
}
private String formatRequiredAttributesMessage() {
List attributes = Lists.newArrayList();
if (!captureTimeIsSet()) attributes.add("captureTime");
if (!errorCountIsSet()) attributes.add("errorCount");
if (!transactionCountIsSet()) attributes.add("transactionCount");
return "Cannot build ErrorPoint, some of required attributes are not set " + attributes;
}
}
}