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

com.hubspot.slack.client.methods.params.conversations.ConversationInviteSharedParams Maven / Gradle / Ivy

package com.hubspot.slack.client.methods.params.conversations;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.immutables.validation.InvalidImmutableStateException;
import com.hubspot.slack.client.methods.interceptor.HasChannel;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
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 ConversationInviteSharedParamsIF}.
 * 

* Use the builder to create immutable instances: * {@code ConversationInviteSharedParams.builder()}. */ @Generated(from = "ConversationInviteSharedParamsIF", generator = "Immutables") @SuppressWarnings({"all"}) @SuppressFBWarnings @ParametersAreNonnullByDefault @javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor") @Immutable public final class ConversationInviteSharedParams implements ConversationInviteSharedParamsIF { private final String channelId; private final List emails; private final List userIds; private ConversationInviteSharedParams( String channelId, List emails, List userIds) { this.channelId = channelId; this.emails = emails; this.userIds = userIds; } /** * @return The value of the {@code channelId} attribute */ @JsonProperty("channel") @Override public String getChannelId() { return channelId; } /** * @return The value of the {@code emails} attribute */ @JsonProperty @Override public List getEmails() { return emails; } /** * @return The value of the {@code userIds} attribute */ @JsonProperty @Override public List getUserIds() { return userIds; } /** * Copy the current immutable object by setting a value for the {@link ConversationInviteSharedParamsIF#getChannelId() channelId} attribute. * An equals check used to prevent copying of the same value by returning {@code this}. * @param value A new value for channelId * @return A modified copy of the {@code this} object */ public final ConversationInviteSharedParams withChannelId(String value) { String newValue = Objects.requireNonNull(value, "channelId"); if (this.channelId.equals(newValue)) return this; return new ConversationInviteSharedParams(newValue, this.emails, this.userIds); } /** * Copy the current immutable object with elements that replace the content of {@link ConversationInviteSharedParamsIF#getEmails() emails}. * @param elements The elements to set * @return A modified copy of {@code this} object */ public final ConversationInviteSharedParams withEmails(String... elements) { List newValue = createUnmodifiableList(false, createSafeList(Arrays.asList(elements), true, false)); return new ConversationInviteSharedParams(this.channelId, newValue, this.userIds); } /** * Copy the current immutable object with elements that replace the content of {@link ConversationInviteSharedParamsIF#getEmails() emails}. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param elements An iterable of emails elements to set * @return A modified copy of {@code this} object */ public final ConversationInviteSharedParams withEmails(Iterable elements) { if (this.emails == elements) return this; List newValue = createUnmodifiableList(false, createSafeList(elements, true, false)); return new ConversationInviteSharedParams(this.channelId, newValue, this.userIds); } /** * Copy the current immutable object with elements that replace the content of {@link ConversationInviteSharedParamsIF#getUserIds() userIds}. * @param elements The elements to set * @return A modified copy of {@code this} object */ public final ConversationInviteSharedParams withUserIds(String... elements) { List newValue = createUnmodifiableList(false, createSafeList(Arrays.asList(elements), true, false)); return new ConversationInviteSharedParams(this.channelId, this.emails, newValue); } /** * Copy the current immutable object with elements that replace the content of {@link ConversationInviteSharedParamsIF#getUserIds() userIds}. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param elements An iterable of userIds elements to set * @return A modified copy of {@code this} object */ public final ConversationInviteSharedParams withUserIds(Iterable elements) { if (this.userIds == elements) return this; List newValue = createUnmodifiableList(false, createSafeList(elements, true, false)); return new ConversationInviteSharedParams(this.channelId, this.emails, newValue); } /** * This instance is equal to all instances of {@code ConversationInviteSharedParams} 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 ConversationInviteSharedParams && equalTo(0, (ConversationInviteSharedParams) another); } private boolean equalTo(int synthetic, ConversationInviteSharedParams another) { return channelId.equals(another.channelId) && emails.equals(another.emails) && userIds.equals(another.userIds); } /** * Computes a hash code from attributes: {@code channelId}, {@code emails}, {@code userIds}. * @return hashCode value */ @Override public int hashCode() { int h = 5381; h += (h << 5) + channelId.hashCode(); h += (h << 5) + emails.hashCode(); h += (h << 5) + userIds.hashCode(); return h; } /** * Prints the immutable value {@code ConversationInviteSharedParams} with attribute values. * @return A string representation of the value */ @Override public String toString() { return "ConversationInviteSharedParams{" + "channelId=" + channelId + ", emails=" + emails + ", userIds=" + userIds + "}"; } /** * 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 = "ConversationInviteSharedParamsIF", generator = "Immutables") @Deprecated @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE) static final class Json implements ConversationInviteSharedParamsIF { @Nullable String channelId; @Nullable List emails = Collections.emptyList(); @Nullable List userIds = Collections.emptyList(); @JsonProperty("channel") public void setChannelId(String channelId) { this.channelId = channelId; } @JsonProperty public void setEmails(List emails) { this.emails = emails; } @JsonProperty public void setUserIds(List userIds) { this.userIds = userIds; } @Override public String getChannelId() { throw new UnsupportedOperationException(); } @Override public List getEmails() { throw new UnsupportedOperationException(); } @Override public List getUserIds() { 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 ConversationInviteSharedParams fromJson(Json json) { ConversationInviteSharedParams.Builder builder = ConversationInviteSharedParams.builder(); if (json.channelId != null) { builder.setChannelId(json.channelId); } if (json.emails != null) { builder.addAllEmails(json.emails); } if (json.userIds != null) { builder.addAllUserIds(json.userIds); } return builder.build(); } /** * Creates an immutable copy of a {@link ConversationInviteSharedParamsIF} 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 ConversationInviteSharedParams instance */ public static ConversationInviteSharedParams copyOf(ConversationInviteSharedParamsIF instance) { if (instance instanceof ConversationInviteSharedParams) { return (ConversationInviteSharedParams) instance; } return ConversationInviteSharedParams.builder() .from(instance) .build(); } /** * Creates a builder for {@link ConversationInviteSharedParams ConversationInviteSharedParams}. *

   * ConversationInviteSharedParams.builder()
   *    .setChannelId(String) // required {@link ConversationInviteSharedParamsIF#getChannelId() channelId}
   *    .addEmails|addAllEmails(String) // {@link ConversationInviteSharedParamsIF#getEmails() emails} elements
   *    .addUserIds|addAllUserIds(String) // {@link ConversationInviteSharedParamsIF#getUserIds() userIds} elements
   *    .build();
   * 
* @return A new ConversationInviteSharedParams builder */ public static ConversationInviteSharedParams.Builder builder() { return new ConversationInviteSharedParams.Builder(); } /** * Builds instances of type {@link ConversationInviteSharedParams ConversationInviteSharedParams}. * 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 = "ConversationInviteSharedParamsIF", generator = "Immutables") @NotThreadSafe public static final class Builder { private static final long INIT_BIT_CHANNEL_ID = 0x1L; private long initBits = 0x1L; private @Nullable String channelId; private List emails = new ArrayList(); private List userIds = new ArrayList(); private Builder() { } /** * Fill a builder with attribute values from the provided {@code com.hubspot.slack.client.methods.params.conversations.ConversationInviteSharedParamsIF} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(ConversationInviteSharedParamsIF 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.methods.interceptor.HasChannel} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(HasChannel 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 ConversationInviteSharedParamsIF) { ConversationInviteSharedParamsIF instance = (ConversationInviteSharedParamsIF) object; addAllEmails(instance.getEmails()); if ((bits & 0x1L) == 0) { this.setChannelId(instance.getChannelId()); bits |= 0x1L; } addAllUserIds(instance.getUserIds()); } if (object instanceof HasChannel) { HasChannel instance = (HasChannel) object; if ((bits & 0x1L) == 0) { this.setChannelId(instance.getChannelId()); bits |= 0x1L; } } } /** * Initializes the value for the {@link ConversationInviteSharedParamsIF#getChannelId() channelId} attribute. * @param channelId The value for channelId * @return {@code this} builder for use in a chained invocation */ public final Builder setChannelId(String channelId) { this.channelId = Objects.requireNonNull(channelId, "channelId"); initBits &= ~INIT_BIT_CHANNEL_ID; return this; } /** * Adds one element to {@link ConversationInviteSharedParamsIF#getEmails() emails} list. * @param element A emails element * @return {@code this} builder for use in a chained invocation */ public final Builder addEmails(String element) { this.emails.add(Objects.requireNonNull(element, "emails element")); return this; } /** * Adds elements to {@link ConversationInviteSharedParamsIF#getEmails() emails} list. * @param elements An array of emails elements * @return {@code this} builder for use in a chained invocation */ public final Builder addEmails(String... elements) { for (String element : elements) { this.emails.add(Objects.requireNonNull(element, "emails element")); } return this; } /** * Sets or replaces all elements for {@link ConversationInviteSharedParamsIF#getEmails() emails} list. * @param elements An iterable of emails elements * @return {@code this} builder for use in a chained invocation */ public final Builder setEmails(Iterable elements) { this.emails.clear(); return addAllEmails(elements); } /** * Adds elements to {@link ConversationInviteSharedParamsIF#getEmails() emails} list. * @param elements An iterable of emails elements * @return {@code this} builder for use in a chained invocation */ public final Builder addAllEmails(Iterable elements) { for (String element : elements) { this.emails.add(Objects.requireNonNull(element, "emails element")); } return this; } /** * Adds one element to {@link ConversationInviteSharedParamsIF#getUserIds() userIds} list. * @param element A userIds element * @return {@code this} builder for use in a chained invocation */ public final Builder addUserIds(String element) { this.userIds.add(Objects.requireNonNull(element, "userIds element")); return this; } /** * Adds elements to {@link ConversationInviteSharedParamsIF#getUserIds() userIds} list. * @param elements An array of userIds elements * @return {@code this} builder for use in a chained invocation */ public final Builder addUserIds(String... elements) { for (String element : elements) { this.userIds.add(Objects.requireNonNull(element, "userIds element")); } return this; } /** * Sets or replaces all elements for {@link ConversationInviteSharedParamsIF#getUserIds() userIds} list. * @param elements An iterable of userIds elements * @return {@code this} builder for use in a chained invocation */ public final Builder setUserIds(Iterable elements) { this.userIds.clear(); return addAllUserIds(elements); } /** * Adds elements to {@link ConversationInviteSharedParamsIF#getUserIds() userIds} list. * @param elements An iterable of userIds elements * @return {@code this} builder for use in a chained invocation */ public final Builder addAllUserIds(Iterable elements) { for (String element : elements) { this.userIds.add(Objects.requireNonNull(element, "userIds element")); } return this; } /** * Builds a new {@link ConversationInviteSharedParams ConversationInviteSharedParams}. * @return An immutable instance of ConversationInviteSharedParams * @throws com.hubspot.immutables.validation.InvalidImmutableStateException if any required attributes are missing */ public ConversationInviteSharedParams build() { checkRequiredAttributes(); return new ConversationInviteSharedParams(channelId, createUnmodifiableList(true, emails), createUnmodifiableList(true, userIds)); } private boolean channelIdIsSet() { return (initBits & INIT_BIT_CHANNEL_ID) == 0; } private void checkRequiredAttributes() { if (initBits != 0) { throw new InvalidImmutableStateException(formatRequiredAttributesMessage()); } } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if (!channelIdIsSet()) attributes.add("channelId"); return "Cannot build ConversationInviteSharedParams, some of required attributes are not set " + attributes; } } private static List createSafeList(Iterable iterable, boolean checkNulls, boolean skipNulls) { ArrayList list; if (iterable instanceof Collection) { int size = ((Collection) iterable).size(); if (size == 0) return Collections.emptyList(); list = new ArrayList<>(size); } else { list = new ArrayList<>(); } for (T element : iterable) { if (skipNulls && element == null) continue; if (checkNulls) Objects.requireNonNull(element, "element"); list.add(element); } return list; } private static List createUnmodifiableList(boolean clone, List list) { switch(list.size()) { case 0: return Collections.emptyList(); case 1: return Collections.singletonList(list.get(0)); default: if (clone) { return Collections.unmodifiableList(new ArrayList<>(list)); } else { if (list instanceof ArrayList) { ((ArrayList) list).trimToSize(); } return Collections.unmodifiableList(list); } } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy