
com.hubspot.slack.client.methods.params.calls.CallsParticipantsAddParams Maven / Gradle / Ivy
package com.hubspot.slack.client.methods.params.calls;
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.models.calls.SlackInternalOrExternalUser;
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 CallsParticipantsAddParamsIF}.
*
* Use the builder to create immutable instances:
* {@code CallsParticipantsAddParams.builder()}.
*/
@Generated(from = "CallsParticipantsAddParamsIF", generator = "Immutables")
@SuppressWarnings({"all"})
@SuppressFBWarnings
@ParametersAreNonnullByDefault
@javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor")
@Immutable
public final class CallsParticipantsAddParams
implements CallsParticipantsAddParamsIF {
private final String id;
private final List users;
private CallsParticipantsAddParams(
String id,
List users) {
this.id = id;
this.users = users;
}
/**
* @return The value of the {@code id} attribute
*/
@JsonProperty
@Override
public String getId() {
return id;
}
/**
* @return The value of the {@code users} attribute
*/
@JsonProperty
@Override
public List getUsers() {
return users;
}
/**
* Copy the current immutable object by setting a value for the {@link CallsParticipantsAddParamsIF#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 CallsParticipantsAddParams withId(String value) {
String newValue = Objects.requireNonNull(value, "id");
if (this.id.equals(newValue)) return this;
return new CallsParticipantsAddParams(newValue, this.users);
}
/**
* Copy the current immutable object with elements that replace the content of {@link CallsParticipantsAddParamsIF#getUsers() users}.
* @param elements The elements to set
* @return A modified copy of {@code this} object
*/
public final CallsParticipantsAddParams withUsers(SlackInternalOrExternalUser... elements) {
List newValue = createUnmodifiableList(false, createSafeList(Arrays.asList(elements), true, false));
return new CallsParticipantsAddParams(this.id, newValue);
}
/**
* Copy the current immutable object with elements that replace the content of {@link CallsParticipantsAddParamsIF#getUsers() users}.
* A shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param elements An iterable of users elements to set
* @return A modified copy of {@code this} object
*/
public final CallsParticipantsAddParams withUsers(Iterable extends SlackInternalOrExternalUser> elements) {
if (this.users == elements) return this;
List newValue = createUnmodifiableList(false, createSafeList(elements, true, false));
return new CallsParticipantsAddParams(this.id, newValue);
}
/**
* This instance is equal to all instances of {@code CallsParticipantsAddParams} 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 CallsParticipantsAddParams
&& equalTo(0, (CallsParticipantsAddParams) another);
}
private boolean equalTo(int synthetic, CallsParticipantsAddParams another) {
return id.equals(another.id)
&& users.equals(another.users);
}
/**
* Computes a hash code from attributes: {@code id}, {@code users}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 5381;
h += (h << 5) + id.hashCode();
h += (h << 5) + users.hashCode();
return h;
}
/**
* Prints the immutable value {@code CallsParticipantsAddParams} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return "CallsParticipantsAddParams{"
+ "id=" + id
+ ", users=" + users
+ "}";
}
/**
* 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 = "CallsParticipantsAddParamsIF", generator = "Immutables")
@Deprecated
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json
implements CallsParticipantsAddParamsIF {
@Nullable String id;
@Nullable List users = Collections.emptyList();
@JsonProperty
public void setId(String id) {
this.id = id;
}
@JsonProperty
public void setUsers(List users) {
this.users = users;
}
@Override
public String getId() { throw new UnsupportedOperationException(); }
@Override
public List getUsers() { 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 CallsParticipantsAddParams fromJson(Json json) {
CallsParticipantsAddParams.Builder builder = CallsParticipantsAddParams.builder();
if (json.id != null) {
builder.setId(json.id);
}
if (json.users != null) {
builder.addAllUsers(json.users);
}
return builder.build();
}
/**
* Creates an immutable copy of a {@link CallsParticipantsAddParamsIF} 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 CallsParticipantsAddParams instance
*/
public static CallsParticipantsAddParams copyOf(CallsParticipantsAddParamsIF instance) {
if (instance instanceof CallsParticipantsAddParams) {
return (CallsParticipantsAddParams) instance;
}
return CallsParticipantsAddParams.builder()
.from(instance)
.build();
}
/**
* Creates a builder for {@link CallsParticipantsAddParams CallsParticipantsAddParams}.
*
* CallsParticipantsAddParams.builder()
* .setId(String) // required {@link CallsParticipantsAddParamsIF#getId() id}
* .addUsers|addAllUsers(com.hubspot.slack.client.models.calls.SlackInternalOrExternalUser) // {@link CallsParticipantsAddParamsIF#getUsers() users} elements
* .build();
*
* @return A new CallsParticipantsAddParams builder
*/
public static CallsParticipantsAddParams.Builder builder() {
return new CallsParticipantsAddParams.Builder();
}
/**
* Builds instances of type {@link CallsParticipantsAddParams CallsParticipantsAddParams}.
* 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 = "CallsParticipantsAddParamsIF", 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 List users = new ArrayList();
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code CallsParticipantsAddParamsIF} 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
*/
public final Builder from(CallsParticipantsAddParamsIF instance) {
Objects.requireNonNull(instance, "instance");
this.setId(instance.getId());
addAllUsers(instance.getUsers());
return this;
}
/**
* Initializes the value for the {@link CallsParticipantsAddParamsIF#getId() id} attribute.
* @param id The value for id
* @return {@code this} builder for use in a chained invocation
*/
public final Builder setId(String id) {
this.id = Objects.requireNonNull(id, "id");
initBits &= ~INIT_BIT_ID;
return this;
}
/**
* Adds one element to {@link CallsParticipantsAddParamsIF#getUsers() users} list.
* @param element A users element
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addUsers(SlackInternalOrExternalUser element) {
this.users.add(Objects.requireNonNull(element, "users element"));
return this;
}
/**
* Adds elements to {@link CallsParticipantsAddParamsIF#getUsers() users} list.
* @param elements An array of users elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addUsers(SlackInternalOrExternalUser... elements) {
for (SlackInternalOrExternalUser element : elements) {
this.users.add(Objects.requireNonNull(element, "users element"));
}
return this;
}
/**
* Sets or replaces all elements for {@link CallsParticipantsAddParamsIF#getUsers() users} list.
* @param elements An iterable of users elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder setUsers(Iterable extends SlackInternalOrExternalUser> elements) {
this.users.clear();
return addAllUsers(elements);
}
/**
* Adds elements to {@link CallsParticipantsAddParamsIF#getUsers() users} list.
* @param elements An iterable of users elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addAllUsers(Iterable extends SlackInternalOrExternalUser> elements) {
for (SlackInternalOrExternalUser element : elements) {
this.users.add(Objects.requireNonNull(element, "users element"));
}
return this;
}
/**
* Builds a new {@link CallsParticipantsAddParams CallsParticipantsAddParams}.
* @return An immutable instance of CallsParticipantsAddParams
* @throws com.hubspot.immutables.validation.InvalidImmutableStateException if any required attributes are missing
*/
public CallsParticipantsAddParams build() {
checkRequiredAttributes();
return new CallsParticipantsAddParams(id, createUnmodifiableList(true, users));
}
private boolean idIsSet() {
return (initBits & INIT_BIT_ID) == 0;
}
private void checkRequiredAttributes() {
if (initBits != 0) {
throw new InvalidImmutableStateException(formatRequiredAttributesMessage());
}
}
private String formatRequiredAttributesMessage() {
List attributes = new ArrayList<>();
if (!idIsSet()) attributes.add("id");
return "Cannot build CallsParticipantsAddParams, some of required attributes are not set " + attributes;
}
}
private static List createSafeList(Iterable extends T> 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);
}
}
}
}