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

com.hubspot.slack.client.methods.params.calls.CallsUpdateParams Maven / Gradle / Ivy

There is a newer version: 1.16.7
Show newest version
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 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 CallsUpdateParamsIF}.
 * 

* Use the builder to create immutable instances: * {@code CallsUpdateParams.builder()}. */ @Generated(from = "CallsUpdateParamsIF", generator = "Immutables") @SuppressWarnings({"all"}) @SuppressFBWarnings @ParametersAreNonnullByDefault @javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor") @Immutable public final class CallsUpdateParams implements CallsUpdateParamsIF { private final String id; private final @Nullable String desktopAppJoinUrl; private final @Nullable String joinUrl; private final @Nullable String title; private CallsUpdateParams( String id, @Nullable String desktopAppJoinUrl, @Nullable String joinUrl, @Nullable String title) { this.id = id; this.desktopAppJoinUrl = desktopAppJoinUrl; this.joinUrl = joinUrl; this.title = title; } /** * @return The value of the {@code id} attribute */ @JsonProperty @Override public String getId() { return id; } /** * @return The value of the {@code desktopAppJoinUrl} attribute */ @JsonProperty @Override public Optional getDesktopAppJoinUrl() { return Optional.ofNullable(desktopAppJoinUrl); } /** * @return The value of the {@code joinUrl} attribute */ @JsonProperty @Override public Optional getJoinUrl() { return Optional.ofNullable(joinUrl); } /** * @return The value of the {@code title} attribute */ @JsonProperty @Override public Optional getTitle() { return Optional.ofNullable(title); } /** * Copy the current immutable object by setting a value for the {@link CallsUpdateParamsIF#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 CallsUpdateParams withId(String value) { String newValue = Objects.requireNonNull(value, "id"); if (this.id.equals(newValue)) return this; return new CallsUpdateParams(newValue, this.desktopAppJoinUrl, this.joinUrl, this.title); } /** * Copy the current immutable object by setting a present value for the optional {@link CallsUpdateParamsIF#getDesktopAppJoinUrl() desktopAppJoinUrl} attribute. * @param value The value for desktopAppJoinUrl, {@code null} is accepted as {@code java.util.Optional.empty()} * @return A modified copy of {@code this} object */ public final CallsUpdateParams withDesktopAppJoinUrl(@Nullable String value) { @Nullable String newValue = value; if (Objects.equals(this.desktopAppJoinUrl, newValue)) return this; return new CallsUpdateParams(this.id, newValue, this.joinUrl, this.title); } /** * Copy the current immutable object by setting an optional value for the {@link CallsUpdateParamsIF#getDesktopAppJoinUrl() desktopAppJoinUrl} 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 desktopAppJoinUrl * @return A modified copy of {@code this} object */ public final CallsUpdateParams withDesktopAppJoinUrl(Optional optional) { @Nullable String value = optional.orElse(null); if (Objects.equals(this.desktopAppJoinUrl, value)) return this; return new CallsUpdateParams(this.id, value, this.joinUrl, this.title); } /** * Copy the current immutable object by setting a present value for the optional {@link CallsUpdateParamsIF#getJoinUrl() joinUrl} attribute. * @param value The value for joinUrl, {@code null} is accepted as {@code java.util.Optional.empty()} * @return A modified copy of {@code this} object */ public final CallsUpdateParams withJoinUrl(@Nullable String value) { @Nullable String newValue = value; if (Objects.equals(this.joinUrl, newValue)) return this; return new CallsUpdateParams(this.id, this.desktopAppJoinUrl, newValue, this.title); } /** * Copy the current immutable object by setting an optional value for the {@link CallsUpdateParamsIF#getJoinUrl() joinUrl} 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 joinUrl * @return A modified copy of {@code this} object */ public final CallsUpdateParams withJoinUrl(Optional optional) { @Nullable String value = optional.orElse(null); if (Objects.equals(this.joinUrl, value)) return this; return new CallsUpdateParams(this.id, this.desktopAppJoinUrl, value, this.title); } /** * Copy the current immutable object by setting a present value for the optional {@link CallsUpdateParamsIF#getTitle() title} attribute. * @param value The value for title, {@code null} is accepted as {@code java.util.Optional.empty()} * @return A modified copy of {@code this} object */ public final CallsUpdateParams withTitle(@Nullable String value) { @Nullable String newValue = value; if (Objects.equals(this.title, newValue)) return this; return new CallsUpdateParams(this.id, this.desktopAppJoinUrl, this.joinUrl, newValue); } /** * Copy the current immutable object by setting an optional value for the {@link CallsUpdateParamsIF#getTitle() title} 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 title * @return A modified copy of {@code this} object */ public final CallsUpdateParams withTitle(Optional optional) { @Nullable String value = optional.orElse(null); if (Objects.equals(this.title, value)) return this; return new CallsUpdateParams(this.id, this.desktopAppJoinUrl, this.joinUrl, value); } /** * This instance is equal to all instances of {@code CallsUpdateParams} 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 CallsUpdateParams && equalTo(0, (CallsUpdateParams) another); } private boolean equalTo(int synthetic, CallsUpdateParams another) { return id.equals(another.id) && Objects.equals(desktopAppJoinUrl, another.desktopAppJoinUrl) && Objects.equals(joinUrl, another.joinUrl) && Objects.equals(title, another.title); } /** * Computes a hash code from attributes: {@code id}, {@code desktopAppJoinUrl}, {@code joinUrl}, {@code title}. * @return hashCode value */ @Override public int hashCode() { int h = 5381; h += (h << 5) + id.hashCode(); h += (h << 5) + Objects.hashCode(desktopAppJoinUrl); h += (h << 5) + Objects.hashCode(joinUrl); h += (h << 5) + Objects.hashCode(title); return h; } /** * Prints the immutable value {@code CallsUpdateParams} with attribute values. * @return A string representation of the value */ @Override public String toString() { StringBuilder builder = new StringBuilder("CallsUpdateParams{"); builder.append("id=").append(id); if (desktopAppJoinUrl != null) { builder.append(", "); builder.append("desktopAppJoinUrl=").append(desktopAppJoinUrl); } if (joinUrl != null) { builder.append(", "); builder.append("joinUrl=").append(joinUrl); } if (title != null) { builder.append(", "); builder.append("title=").append(title); } 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 = "CallsUpdateParamsIF", generator = "Immutables") @Deprecated @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE) static final class Json implements CallsUpdateParamsIF { @Nullable String id; @Nullable Optional desktopAppJoinUrl = Optional.empty(); @Nullable Optional joinUrl = Optional.empty(); @Nullable Optional title = Optional.empty(); @JsonProperty public void setId(String id) { this.id = id; } @JsonProperty public void setDesktopAppJoinUrl(Optional desktopAppJoinUrl) { this.desktopAppJoinUrl = desktopAppJoinUrl; } @JsonProperty public void setJoinUrl(Optional joinUrl) { this.joinUrl = joinUrl; } @JsonProperty public void setTitle(Optional title) { this.title = title; } @Override public String getId() { throw new UnsupportedOperationException(); } @Override public Optional getDesktopAppJoinUrl() { throw new UnsupportedOperationException(); } @Override public Optional getJoinUrl() { throw new UnsupportedOperationException(); } @Override public Optional getTitle() { 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 CallsUpdateParams fromJson(Json json) { CallsUpdateParams.Builder builder = CallsUpdateParams.builder(); if (json.id != null) { builder.setId(json.id); } if (json.desktopAppJoinUrl != null) { builder.setDesktopAppJoinUrl(json.desktopAppJoinUrl); } if (json.joinUrl != null) { builder.setJoinUrl(json.joinUrl); } if (json.title != null) { builder.setTitle(json.title); } return builder.build(); } /** * Creates an immutable copy of a {@link CallsUpdateParamsIF} 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 CallsUpdateParams instance */ public static CallsUpdateParams copyOf(CallsUpdateParamsIF instance) { if (instance instanceof CallsUpdateParams) { return (CallsUpdateParams) instance; } return CallsUpdateParams.builder() .from(instance) .build(); } /** * Creates a builder for {@link CallsUpdateParams CallsUpdateParams}. *

   * CallsUpdateParams.builder()
   *    .setId(String) // required {@link CallsUpdateParamsIF#getId() id}
   *    .setDesktopAppJoinUrl(String) // optional {@link CallsUpdateParamsIF#getDesktopAppJoinUrl() desktopAppJoinUrl}
   *    .setJoinUrl(String) // optional {@link CallsUpdateParamsIF#getJoinUrl() joinUrl}
   *    .setTitle(String) // optional {@link CallsUpdateParamsIF#getTitle() title}
   *    .build();
   * 
* @return A new CallsUpdateParams builder */ public static CallsUpdateParams.Builder builder() { return new CallsUpdateParams.Builder(); } /** * Builds instances of type {@link CallsUpdateParams CallsUpdateParams}. * 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 = "CallsUpdateParamsIF", 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 @Nullable String desktopAppJoinUrl; private @Nullable String joinUrl; private @Nullable String title; private Builder() { } /** * Fill a builder with attribute values from the provided {@code CallsUpdateParamsIF} 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(CallsUpdateParamsIF instance) { Objects.requireNonNull(instance, "instance"); this.setId(instance.getId()); Optional desktopAppJoinUrlOptional = instance.getDesktopAppJoinUrl(); if (desktopAppJoinUrlOptional.isPresent()) { setDesktopAppJoinUrl(desktopAppJoinUrlOptional); } Optional joinUrlOptional = instance.getJoinUrl(); if (joinUrlOptional.isPresent()) { setJoinUrl(joinUrlOptional); } Optional titleOptional = instance.getTitle(); if (titleOptional.isPresent()) { setTitle(titleOptional); } return this; } /** * Initializes the value for the {@link CallsUpdateParamsIF#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; } /** * Initializes the optional value {@link CallsUpdateParamsIF#getDesktopAppJoinUrl() desktopAppJoinUrl} to desktopAppJoinUrl. * @param desktopAppJoinUrl The value for desktopAppJoinUrl, {@code null} is accepted as {@code java.util.Optional.empty()} * @return {@code this} builder for chained invocation */ public final Builder setDesktopAppJoinUrl(@Nullable String desktopAppJoinUrl) { this.desktopAppJoinUrl = desktopAppJoinUrl; return this; } /** * Initializes the optional value {@link CallsUpdateParamsIF#getDesktopAppJoinUrl() desktopAppJoinUrl} to desktopAppJoinUrl. * @param desktopAppJoinUrl The value for desktopAppJoinUrl * @return {@code this} builder for use in a chained invocation */ public final Builder setDesktopAppJoinUrl(Optional desktopAppJoinUrl) { this.desktopAppJoinUrl = desktopAppJoinUrl.orElse(null); return this; } /** * Initializes the optional value {@link CallsUpdateParamsIF#getJoinUrl() joinUrl} to joinUrl. * @param joinUrl The value for joinUrl, {@code null} is accepted as {@code java.util.Optional.empty()} * @return {@code this} builder for chained invocation */ public final Builder setJoinUrl(@Nullable String joinUrl) { this.joinUrl = joinUrl; return this; } /** * Initializes the optional value {@link CallsUpdateParamsIF#getJoinUrl() joinUrl} to joinUrl. * @param joinUrl The value for joinUrl * @return {@code this} builder for use in a chained invocation */ public final Builder setJoinUrl(Optional joinUrl) { this.joinUrl = joinUrl.orElse(null); return this; } /** * Initializes the optional value {@link CallsUpdateParamsIF#getTitle() title} to title. * @param title The value for title, {@code null} is accepted as {@code java.util.Optional.empty()} * @return {@code this} builder for chained invocation */ public final Builder setTitle(@Nullable String title) { this.title = title; return this; } /** * Initializes the optional value {@link CallsUpdateParamsIF#getTitle() title} to title. * @param title The value for title * @return {@code this} builder for use in a chained invocation */ public final Builder setTitle(Optional title) { this.title = title.orElse(null); return this; } /** * Builds a new {@link CallsUpdateParams CallsUpdateParams}. * @return An immutable instance of CallsUpdateParams * @throws com.hubspot.immutables.validation.InvalidImmutableStateException if any required attributes are missing */ public CallsUpdateParams build() { checkRequiredAttributes(); return new CallsUpdateParams(id, desktopAppJoinUrl, joinUrl, title); } 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 CallsUpdateParams, some of required attributes are not set " + attributes; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy