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

com.hubspot.slack.client.models.interaction.views.ViewConversationsSelect Maven / Gradle / Ivy

package com.hubspot.slack.client.models.interaction.views;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.hubspot.immutables.validation.InvalidImmutableStateException;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
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 ViewConversationsSelectIF}.
 * 

* Use the builder to create immutable instances: * {@code ViewConversationsSelect.builder()}. */ @Generated(from = "ViewConversationsSelectIF", generator = "Immutables") @SuppressWarnings({"all"}) @SuppressFBWarnings @ParametersAreNonnullByDefault @javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor") @Immutable public final class ViewConversationsSelect implements ViewConversationsSelectIF { private final ViewInputType type; private final @Nullable String selectedConversation; private ViewConversationsSelect( ViewInputType type, @Nullable String selectedConversation) { this.type = type; this.selectedConversation = selectedConversation; } /** * @return The value of the {@code type} attribute */ @JsonProperty @Override public ViewInputType getType() { return type; } /** * @return The value of the {@code selectedConversation} attribute */ @JsonProperty @Override public Optional getSelectedConversation() { return Optional.ofNullable(selectedConversation); } /** * Copy the current immutable object by setting a value for the {@link ViewConversationsSelectIF#getType() type} attribute. * A value equality check is used to prevent copying of the same value by returning {@code this}. * @param value A new value for type * @return A modified copy of the {@code this} object */ public final ViewConversationsSelect withType(ViewInputType value) { ViewInputType newValue = Objects.requireNonNull(value, "type"); if (this.type == newValue) return this; return new ViewConversationsSelect(newValue, this.selectedConversation); } /** * Copy the current immutable object by setting a present value for the optional {@link ViewConversationsSelectIF#getSelectedConversation() selectedConversation} attribute. * @param value The value for selectedConversation, {@code null} is accepted as {@code java.util.Optional.empty()} * @return A modified copy of {@code this} object */ public final ViewConversationsSelect withSelectedConversation(@Nullable String value) { @Nullable String newValue = value; if (Objects.equals(this.selectedConversation, newValue)) return this; return new ViewConversationsSelect(this.type, newValue); } /** * Copy the current immutable object by setting an optional value for the {@link ViewConversationsSelectIF#getSelectedConversation() selectedConversation} attribute. * An equality check is used on inner nullable value to prevent copying of the same value by returning {@code this}. * @param optional A value for selectedConversation * @return A modified copy of {@code this} object */ public final ViewConversationsSelect withSelectedConversation(Optional optional) { @Nullable String value = optional.orElse(null); if (Objects.equals(this.selectedConversation, value)) return this; return new ViewConversationsSelect(this.type, value); } /** * This instance is equal to all instances of {@code ViewConversationsSelect} 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 ViewConversationsSelect && equalTo(0, (ViewConversationsSelect) another); } private boolean equalTo(int synthetic, ViewConversationsSelect another) { return type.equals(another.type) && Objects.equals(selectedConversation, another.selectedConversation); } /** * Computes a hash code from attributes: {@code type}, {@code selectedConversation}. * @return hashCode value */ @Override public int hashCode() { int h = 5381; h += (h << 5) + type.hashCode(); h += (h << 5) + Objects.hashCode(selectedConversation); return h; } /** * Prints the immutable value {@code ViewConversationsSelect} with attribute values. * @return A string representation of the value */ @Override public String toString() { StringBuilder builder = new StringBuilder("ViewConversationsSelect{"); builder.append("type=").append(type); if (selectedConversation != null) { builder.append(", "); builder.append("selectedConversation=").append(selectedConversation); } return builder.append("}").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 = "ViewConversationsSelectIF", generator = "Immutables") @Deprecated @JsonTypeInfo(use=JsonTypeInfo.Id.NONE) @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE) static final class Json implements ViewConversationsSelectIF { @Nullable ViewInputType type; @Nullable Optional selectedConversation = Optional.empty(); @JsonProperty public void setType(ViewInputType type) { this.type = type; } @JsonProperty public void setSelectedConversation(Optional selectedConversation) { this.selectedConversation = selectedConversation; } @Override public ViewInputType getType() { throw new UnsupportedOperationException(); } @Override public Optional getSelectedConversation() { 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 ViewConversationsSelect fromJson(Json json) { ViewConversationsSelect.Builder builder = ViewConversationsSelect.builder(); if (json.type != null) { builder.setType(json.type); } if (json.selectedConversation != null) { builder.setSelectedConversation(json.selectedConversation); } return builder.build(); } /** * Creates an immutable copy of a {@link ViewConversationsSelectIF} 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 ViewConversationsSelect instance */ public static ViewConversationsSelect copyOf(ViewConversationsSelectIF instance) { if (instance instanceof ViewConversationsSelect) { return (ViewConversationsSelect) instance; } return ViewConversationsSelect.builder() .from(instance) .build(); } /** * Creates a builder for {@link ViewConversationsSelect ViewConversationsSelect}. *

   * ViewConversationsSelect.builder()
   *    .setType(com.hubspot.slack.client.models.interaction.views.ViewInputType) // required {@link ViewConversationsSelectIF#getType() type}
   *    .setSelectedConversation(String) // optional {@link ViewConversationsSelectIF#getSelectedConversation() selectedConversation}
   *    .build();
   * 
* @return A new ViewConversationsSelect builder */ public static ViewConversationsSelect.Builder builder() { return new ViewConversationsSelect.Builder(); } /** * Builds instances of type {@link ViewConversationsSelect ViewConversationsSelect}. * 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 = "ViewConversationsSelectIF", generator = "Immutables") @NotThreadSafe public static final class Builder { private static final long INIT_BIT_TYPE = 0x1L; private long initBits = 0x1L; private @Nullable ViewInputType type; private @Nullable String selectedConversation; private Builder() { } /** * Fill a builder with attribute values from the provided {@code com.hubspot.slack.client.models.interaction.views.ViewInput} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(ViewInput instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Fill a builder with attribute values from the provided {@code com.hubspot.slack.client.models.interaction.views.ViewConversationsSelectIF} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(ViewConversationsSelectIF instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } private void from(short _unused, Object object) { long bits = 0; if (object instanceof ViewInput) { ViewInput instance = (ViewInput) object; if ((bits & 0x1L) == 0) { this.setType(instance.getType()); bits |= 0x1L; } } if (object instanceof ViewConversationsSelectIF) { ViewConversationsSelectIF instance = (ViewConversationsSelectIF) object; if ((bits & 0x1L) == 0) { this.setType(instance.getType()); bits |= 0x1L; } Optional selectedConversationOptional = instance.getSelectedConversation(); if (selectedConversationOptional.isPresent()) { setSelectedConversation(selectedConversationOptional); } } } /** * Initializes the value for the {@link ViewConversationsSelectIF#getType() type} attribute. * @param type The value for type * @return {@code this} builder for use in a chained invocation */ public final Builder setType(ViewInputType type) { this.type = Objects.requireNonNull(type, "type"); initBits &= ~INIT_BIT_TYPE; return this; } /** * Initializes the optional value {@link ViewConversationsSelectIF#getSelectedConversation() selectedConversation} to selectedConversation. * @param selectedConversation The value for selectedConversation, {@code null} is accepted as {@code java.util.Optional.empty()} * @return {@code this} builder for chained invocation */ public final Builder setSelectedConversation(@Nullable String selectedConversation) { this.selectedConversation = selectedConversation; return this; } /** * Initializes the optional value {@link ViewConversationsSelectIF#getSelectedConversation() selectedConversation} to selectedConversation. * @param selectedConversation The value for selectedConversation * @return {@code this} builder for use in a chained invocation */ public final Builder setSelectedConversation(Optional selectedConversation) { this.selectedConversation = selectedConversation.orElse(null); return this; } /** * Builds a new {@link ViewConversationsSelect ViewConversationsSelect}. * @return An immutable instance of ViewConversationsSelect * @throws com.hubspot.immutables.validation.InvalidImmutableStateException if any required attributes are missing */ public ViewConversationsSelect build() { checkRequiredAttributes(); return new ViewConversationsSelect(type, selectedConversation); } private boolean typeIsSet() { return (initBits & INIT_BIT_TYPE) == 0; } private void checkRequiredAttributes() { if (initBits != 0) { throw new InvalidImmutableStateException(formatRequiredAttributesMessage()); } } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if (!typeIsSet()) attributes.add("type"); return "Cannot build ViewConversationsSelect, some of required attributes are not set " + attributes; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy