All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.resys.hdes.client.api.ast.ImmutableFlowAstAutocomplete Maven / Gradle / Ivy

There is a newer version: 3.130.78
Show newest version
package io.resys.hdes.client.api.ast;

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 com.google.common.base.MoreObjects;
import com.google.common.collect.ImmutableList;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import com.google.errorprone.annotations.Var;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;
import org.immutables.value.Generated;

/**
 * Immutable implementation of {@link AstFlow.FlowAstAutocomplete}.
 * 

* Use the builder to create immutable instances: * {@code ImmutableFlowAstAutocomplete.builder()}. */ @Generated(from = "AstFlow.FlowAstAutocomplete", generator = "Immutables") @SuppressWarnings({"all"}) @ParametersAreNonnullByDefault @javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue public final class ImmutableFlowAstAutocomplete implements AstFlow.FlowAstAutocomplete { private final String id; private final ImmutableList range; private final ImmutableList value; private ImmutableFlowAstAutocomplete( String id, ImmutableList range, ImmutableList value) { this.id = id; this.range = range; this.value = value; } /** * @return The value of the {@code id} attribute */ @JsonProperty("id") @Override public String getId() { return id; } /** * @return The value of the {@code range} attribute */ @JsonProperty("range") @Override public ImmutableList getRange() { return range; } /** * @return The value of the {@code value} attribute */ @JsonProperty("value") @Override public ImmutableList getValue() { return value; } /** * Copy the current immutable object by setting a value for the {@link AstFlow.FlowAstAutocomplete#getId() id} attribute. * An equals check used to prevent copying of the same value by returning {@code this}. * @param value A new value for id * @return A modified copy of the {@code this} object */ public final ImmutableFlowAstAutocomplete withId(String value) { String newValue = Objects.requireNonNull(value, "id"); if (this.id.equals(newValue)) return this; return new ImmutableFlowAstAutocomplete(newValue, this.range, this.value); } /** * Copy the current immutable object with elements that replace the content of {@link AstFlow.FlowAstAutocomplete#getRange() range}. * @param elements The elements to set * @return A modified copy of {@code this} object */ public final ImmutableFlowAstAutocomplete withRange(AstBody.AstCommandRange... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableFlowAstAutocomplete(this.id, newValue, this.value); } /** * Copy the current immutable object with elements that replace the content of {@link AstFlow.FlowAstAutocomplete#getRange() range}. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param elements An iterable of range elements to set * @return A modified copy of {@code this} object */ public final ImmutableFlowAstAutocomplete withRange(Iterable elements) { if (this.range == elements) return this; ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableFlowAstAutocomplete(this.id, newValue, this.value); } /** * Copy the current immutable object with elements that replace the content of {@link AstFlow.FlowAstAutocomplete#getValue() value}. * @param elements The elements to set * @return A modified copy of {@code this} object */ public final ImmutableFlowAstAutocomplete withValue(String... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableFlowAstAutocomplete(this.id, this.range, newValue); } /** * Copy the current immutable object with elements that replace the content of {@link AstFlow.FlowAstAutocomplete#getValue() value}. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param elements An iterable of value elements to set * @return A modified copy of {@code this} object */ public final ImmutableFlowAstAutocomplete withValue(Iterable elements) { if (this.value == elements) return this; ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableFlowAstAutocomplete(this.id, this.range, newValue); } /** * This instance is equal to all instances of {@code ImmutableFlowAstAutocomplete} 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 ImmutableFlowAstAutocomplete && equalTo((ImmutableFlowAstAutocomplete) another); } private boolean equalTo(ImmutableFlowAstAutocomplete another) { return id.equals(another.id) && range.equals(another.range) && value.equals(another.value); } /** * Computes a hash code from attributes: {@code id}, {@code range}, {@code value}. * @return hashCode value */ @Override public int hashCode() { @Var int h = 5381; h += (h << 5) + id.hashCode(); h += (h << 5) + range.hashCode(); h += (h << 5) + value.hashCode(); return h; } /** * Prints the immutable value {@code FlowAstAutocomplete} with attribute values. * @return A string representation of the value */ @Override public String toString() { return MoreObjects.toStringHelper("FlowAstAutocomplete") .omitNullValues() .add("id", id) .add("range", range) .add("value", value) .toString(); } /** * 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 */ @Generated(from = "AstFlow.FlowAstAutocomplete", generator = "Immutables") @Deprecated @SuppressWarnings("Immutable") @JsonDeserialize @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE) static final class Json implements AstFlow.FlowAstAutocomplete { @Nullable String id; @Nullable List range = ImmutableList.of(); @Nullable List value = ImmutableList.of(); @JsonProperty("id") public void setId(String id) { this.id = id; } @JsonProperty("range") public void setRange(List range) { this.range = range; } @JsonProperty("value") public void setValue(List value) { this.value = value; } @Override public String getId() { throw new UnsupportedOperationException(); } @Override public List getRange() { throw new UnsupportedOperationException(); } @Override public List getValue() { 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 ImmutableFlowAstAutocomplete fromJson(Json json) { ImmutableFlowAstAutocomplete.Builder builder = ImmutableFlowAstAutocomplete.builder(); if (json.id != null) { builder.id(json.id); } if (json.range != null) { builder.addAllRange(json.range); } if (json.value != null) { builder.addAllValue(json.value); } return builder.build(); } /** * Creates an immutable copy of a {@link AstFlow.FlowAstAutocomplete} 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 FlowAstAutocomplete instance */ public static ImmutableFlowAstAutocomplete copyOf(AstFlow.FlowAstAutocomplete instance) { if (instance instanceof ImmutableFlowAstAutocomplete) { return (ImmutableFlowAstAutocomplete) instance; } return ImmutableFlowAstAutocomplete.builder() .from(instance) .build(); } /** * Creates a builder for {@link ImmutableFlowAstAutocomplete ImmutableFlowAstAutocomplete}. *

   * ImmutableFlowAstAutocomplete.builder()
   *    .id(String) // required {@link AstFlow.FlowAstAutocomplete#getId() id}
   *    .addRange|addAllRange(io.resys.hdes.client.api.ast.AstBody.AstCommandRange) // {@link AstFlow.FlowAstAutocomplete#getRange() range} elements
   *    .addValue|addAllValue(String) // {@link AstFlow.FlowAstAutocomplete#getValue() value} elements
   *    .build();
   * 
* @return A new ImmutableFlowAstAutocomplete builder */ public static ImmutableFlowAstAutocomplete.Builder builder() { return new ImmutableFlowAstAutocomplete.Builder(); } /** * Builds instances of type {@link ImmutableFlowAstAutocomplete ImmutableFlowAstAutocomplete}. * 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. */ @Generated(from = "AstFlow.FlowAstAutocomplete", generator = "Immutables") @NotThreadSafe public static final class Builder { private static final long INIT_BIT_ID = 0x1L; private long initBits = 0x1L; private @Nullable String id; private ImmutableList.Builder range = ImmutableList.builder(); private ImmutableList.Builder value = ImmutableList.builder(); private Builder() { } /** * Fill a builder with attribute values from the provided {@code FlowAstAutocomplete} instance. * Regular attribute values will be replaced with those from the given instance. * Absent optional values will not replace present values. * Collection elements and entries will be added, not replaced. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder from(AstFlow.FlowAstAutocomplete instance) { Objects.requireNonNull(instance, "instance"); id(instance.getId()); addAllRange(instance.getRange()); addAllValue(instance.getValue()); return this; } /** * Initializes the value for the {@link AstFlow.FlowAstAutocomplete#getId() id} attribute. * @param id The value for id * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue @JsonProperty("id") public final Builder id(String id) { this.id = Objects.requireNonNull(id, "id"); initBits &= ~INIT_BIT_ID; return this; } /** * Adds one element to {@link AstFlow.FlowAstAutocomplete#getRange() range} list. * @param element A range element * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder addRange(AstBody.AstCommandRange element) { this.range.add(element); return this; } /** * Adds elements to {@link AstFlow.FlowAstAutocomplete#getRange() range} list. * @param elements An array of range elements * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder addRange(AstBody.AstCommandRange... elements) { this.range.add(elements); return this; } /** * Sets or replaces all elements for {@link AstFlow.FlowAstAutocomplete#getRange() range} list. * @param elements An iterable of range elements * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue @JsonProperty("range") public final Builder range(Iterable elements) { this.range = ImmutableList.builder(); return addAllRange(elements); } /** * Adds elements to {@link AstFlow.FlowAstAutocomplete#getRange() range} list. * @param elements An iterable of range elements * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder addAllRange(Iterable elements) { this.range.addAll(elements); return this; } /** * Adds one element to {@link AstFlow.FlowAstAutocomplete#getValue() value} list. * @param element A value element * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder addValue(String element) { this.value.add(element); return this; } /** * Adds elements to {@link AstFlow.FlowAstAutocomplete#getValue() value} list. * @param elements An array of value elements * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder addValue(String... elements) { this.value.add(elements); return this; } /** * Sets or replaces all elements for {@link AstFlow.FlowAstAutocomplete#getValue() value} list. * @param elements An iterable of value elements * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue @JsonProperty("value") public final Builder value(Iterable elements) { this.value = ImmutableList.builder(); return addAllValue(elements); } /** * Adds elements to {@link AstFlow.FlowAstAutocomplete#getValue() value} list. * @param elements An iterable of value elements * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder addAllValue(Iterable elements) { this.value.addAll(elements); return this; } /** * Builds a new {@link ImmutableFlowAstAutocomplete ImmutableFlowAstAutocomplete}. * @return An immutable instance of FlowAstAutocomplete * @throws java.lang.IllegalStateException if any required attributes are missing */ public ImmutableFlowAstAutocomplete build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return new ImmutableFlowAstAutocomplete(id, range.build(), value.build()); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_ID) != 0) attributes.add("id"); return "Cannot build FlowAstAutocomplete, some of required attributes are not set " + attributes; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy