com.myperfit.sdk.transactional.domain.tracking.TrackingOpenRequest Maven / Gradle / Ivy
Show all versions of transactionalsdk Show documentation
package com.myperfit.sdk.transactional.domain.tracking;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.Objects;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;
/**
* Immutable implementation of {@link AbstractTrackingOpenRequest}.
*
* Use the builder to create immutable instances:
* {@code TrackingOpenRequest.builder()}.
*/
@SuppressWarnings({"all"})
@ParametersAreNonnullByDefault
@Immutable
public final class TrackingOpenRequest
extends AbstractTrackingOpenRequest {
private final @Nullable Boolean enable;
private TrackingOpenRequest(@Nullable Boolean enable) {
this.enable = enable;
}
/**
* @return The value of the {@code enable} attribute
*/
@JsonProperty("enable")
@Override
public @Nullable Boolean enable() {
return enable;
}
/**
* Copy the current immutable object by setting a value for the {@link AbstractTrackingOpenRequest#enable() enable} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for enable (can be {@code null})
* @return A modified copy of the {@code this} object
*/
public final TrackingOpenRequest withEnable(@Nullable Boolean value) {
if (Objects.equals(this.enable, value)) return this;
return new TrackingOpenRequest(value);
}
/**
* This instance is equal to all instances of {@code TrackingOpenRequest} that have 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 TrackingOpenRequest
&& equalTo((TrackingOpenRequest) another);
}
private boolean equalTo(TrackingOpenRequest another) {
return Objects.equals(enable, another.enable);
}
/**
* Computes a hash code from attributes: {@code enable}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 5381;
h += (h << 5) + Objects.hashCode(enable);
return h;
}
/**
* Prints the immutable value {@code TrackingOpenRequest} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return "TrackingOpenRequest{"
+ "enable=" + enable
+ "}";
}
/**
* Utility type used to correctly read immutable object from JSON representation.
* @deprecated Do not use this type directly, it exists only for the Jackson-binding infrastructure
*/
@Deprecated
@JsonDeserialize
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json extends AbstractTrackingOpenRequest {
@Nullable Boolean enable;
@JsonProperty("enable")
public void setEnable(@Nullable Boolean enable) {
this.enable = enable;
}
@Override
public Boolean enable() { throw new UnsupportedOperationException(); }
}
/**
* @param json A JSON-bindable data structure
* @return An immutable value type
* @deprecated Do not use this method directly, it exists only for the Jackson-binding infrastructure
*/
@Deprecated
@JsonCreator(mode = JsonCreator.Mode.DELEGATING)
static TrackingOpenRequest fromJson(Json json) {
TrackingOpenRequest.Builder builder = TrackingOpenRequest.builder();
if (json.enable != null) {
builder.enable(json.enable);
}
return builder.build();
}
/**
* Creates an immutable copy of a {@link AbstractTrackingOpenRequest} value.
* Uses accessors to get values to initialize the new immutable instance.
* If an instance is already immutable, it is returned as is.
* @param instance The instance to copy
* @return A copied immutable TrackingOpenRequest instance
*/
public static TrackingOpenRequest copyOf(AbstractTrackingOpenRequest instance) {
if (instance instanceof TrackingOpenRequest) {
return (TrackingOpenRequest) instance;
}
return TrackingOpenRequest.builder()
.from(instance)
.build();
}
/**
* Creates a builder for {@link TrackingOpenRequest TrackingOpenRequest}.
* @return A new TrackingOpenRequest builder
*/
public static TrackingOpenRequest.Builder builder() {
return new TrackingOpenRequest.Builder();
}
/**
* Builds instances of type {@link TrackingOpenRequest TrackingOpenRequest}.
* Initialize attributes and then invoke the {@link #build()} method to create an
* immutable instance.
*
{@code Builder} is not thread-safe and generally should not be stored in a field or collection,
* but instead used immediately to create instances.
*/
@NotThreadSafe
public static final class Builder {
private @Nullable Boolean enable;
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code AbstractTrackingOpenRequest} instance.
* Regular attribute values will be replaced with those from the given instance.
* Absent optional values will not replace present values.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(AbstractTrackingOpenRequest instance) {
Objects.requireNonNull(instance, "instance");
@Nullable Boolean enableValue = instance.enable();
if (enableValue != null) {
enable(enableValue);
}
return this;
}
/**
* Initializes the value for the {@link AbstractTrackingOpenRequest#enable() enable} attribute.
* @param enable The value for enable (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("enable")
public final Builder enable(@Nullable Boolean enable) {
this.enable = enable;
return this;
}
/**
* Builds a new {@link TrackingOpenRequest TrackingOpenRequest}.
* @return An immutable instance of TrackingOpenRequest
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public TrackingOpenRequest build() {
return new TrackingOpenRequest(enable);
}
}
}