Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.hubspot.slack.client.models.interaction.views.ViewCheckboxes 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.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.hubspot.immutables.validation.InvalidImmutableStateException;
import com.hubspot.slack.client.models.blocks.json.OptionOrOptionGroupDeserializer;
import com.hubspot.slack.client.models.blocks.objects.Option;
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 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 ViewCheckboxesIF}.
*
* Use the builder to create immutable instances:
* {@code ViewCheckboxes.builder()}.
*/
@Generated(from = "ViewCheckboxesIF", generator = "Immutables")
@SuppressWarnings({"all"})
@SuppressFBWarnings
@ParametersAreNonnullByDefault
@javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor")
@Immutable
public final class ViewCheckboxes
implements ViewCheckboxesIF {
private final ViewInputType type;
private final @Nullable String stringValue;
private final List selectedOptions;
private ViewCheckboxes(
ViewInputType type,
@Nullable String stringValue,
List selectedOptions) {
this.type = type;
this.stringValue = stringValue;
this.selectedOptions = selectedOptions;
}
/**
* @return The value of the {@code type} attribute
*/
@JsonProperty
@Override
public ViewInputType getType() {
return type;
}
/**
* @return The value of the {@code stringValue} attribute
*/
@JsonProperty
@JsonIgnore
@Override
public Optional getStringValue() {
return Optional.ofNullable(stringValue);
}
/**
* @return The value of the {@code selectedOptions} attribute
*/
@JsonProperty
@JsonDeserialize(contentUsing = OptionOrOptionGroupDeserializer.class)
@Override
public List getSelectedOptions() {
return selectedOptions;
}
/**
* Copy the current immutable object by setting a value for the {@link ViewCheckboxesIF#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 ViewCheckboxes withType(ViewInputType value) {
ViewInputType newValue = Objects.requireNonNull(value, "type");
if (this.type == newValue) return this;
return new ViewCheckboxes(newValue, this.stringValue, this.selectedOptions);
}
/**
* Copy the current immutable object by setting a present value for the optional {@link ViewCheckboxesIF#getStringValue() stringValue} attribute.
* @param value The value for stringValue, {@code null} is accepted as {@code java.util.Optional.empty()}
* @return A modified copy of {@code this} object
*/
public final ViewCheckboxes withStringValue(@Nullable String value) {
@Nullable String newValue = value;
if (Objects.equals(this.stringValue, newValue)) return this;
return new ViewCheckboxes(this.type, newValue, this.selectedOptions);
}
/**
* Copy the current immutable object by setting an optional value for the {@link ViewCheckboxesIF#getStringValue() stringValue} 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 stringValue
* @return A modified copy of {@code this} object
*/
public final ViewCheckboxes withStringValue(Optional optional) {
@Nullable String value = optional.orElse(null);
if (Objects.equals(this.stringValue, value)) return this;
return new ViewCheckboxes(this.type, value, this.selectedOptions);
}
/**
* Copy the current immutable object with elements that replace the content of {@link ViewCheckboxesIF#getSelectedOptions() selectedOptions}.
* @param elements The elements to set
* @return A modified copy of {@code this} object
*/
public final ViewCheckboxes withSelectedOptions(Option... elements) {
List newValue = createUnmodifiableList(false, createSafeList(Arrays.asList(elements), true, false));
return new ViewCheckboxes(this.type, this.stringValue, newValue);
}
/**
* Copy the current immutable object with elements that replace the content of {@link ViewCheckboxesIF#getSelectedOptions() selectedOptions}.
* A shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param elements An iterable of selectedOptions elements to set
* @return A modified copy of {@code this} object
*/
public final ViewCheckboxes withSelectedOptions(Iterable extends Option> elements) {
if (this.selectedOptions == elements) return this;
List newValue = createUnmodifiableList(false, createSafeList(elements, true, false));
return new ViewCheckboxes(this.type, this.stringValue, newValue);
}
/**
* This instance is equal to all instances of {@code ViewCheckboxes} 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 ViewCheckboxes
&& equalTo(0, (ViewCheckboxes) another);
}
private boolean equalTo(int synthetic, ViewCheckboxes another) {
return type.equals(another.type)
&& Objects.equals(stringValue, another.stringValue)
&& selectedOptions.equals(another.selectedOptions);
}
/**
* Computes a hash code from attributes: {@code type}, {@code stringValue}, {@code selectedOptions}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 5381;
h += (h << 5) + type.hashCode();
h += (h << 5) + Objects.hashCode(stringValue);
h += (h << 5) + selectedOptions.hashCode();
return h;
}
/**
* Prints the immutable value {@code ViewCheckboxes} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
StringBuilder builder = new StringBuilder("ViewCheckboxes{");
builder.append("type=").append(type);
if (stringValue != null) {
builder.append(", ");
builder.append("stringValue=").append(stringValue);
}
builder.append(", ");
builder.append("selectedOptions=").append(selectedOptions);
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 = "ViewCheckboxesIF", generator = "Immutables")
@Deprecated
@JsonTypeInfo(use=JsonTypeInfo.Id.NONE)
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json implements ViewCheckboxesIF {
@Nullable ViewInputType type;
@Nullable Optional stringValue = Optional.empty();
@Nullable List selectedOptions = Collections.emptyList();
@JsonProperty
public void setType(ViewInputType type) {
this.type = type;
}
@JsonProperty
@JsonIgnore
public void setStringValue(Optional stringValue) {
this.stringValue = stringValue;
}
@JsonProperty
@JsonDeserialize(contentUsing = OptionOrOptionGroupDeserializer.class)
public void setSelectedOptions(List selectedOptions) {
this.selectedOptions = selectedOptions;
}
@Override
public ViewInputType getType() { throw new UnsupportedOperationException(); }
@Override
public Optional getStringValue() { throw new UnsupportedOperationException(); }
@Override
public List getSelectedOptions() { 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 ViewCheckboxes fromJson(Json json) {
ViewCheckboxes.Builder builder = ViewCheckboxes.builder();
if (json.type != null) {
builder.setType(json.type);
}
if (json.stringValue != null) {
builder.setStringValue(json.stringValue);
}
if (json.selectedOptions != null) {
builder.addAllSelectedOptions(json.selectedOptions);
}
return builder.build();
}
/**
* Creates an immutable copy of a {@link ViewCheckboxesIF} 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 ViewCheckboxes instance
*/
public static ViewCheckboxes copyOf(ViewCheckboxesIF instance) {
if (instance instanceof ViewCheckboxes) {
return (ViewCheckboxes) instance;
}
return ViewCheckboxes.builder()
.from(instance)
.build();
}
/**
* Creates a builder for {@link ViewCheckboxes ViewCheckboxes}.
*
* ViewCheckboxes.builder()
* .setType(com.hubspot.slack.client.models.interaction.views.ViewInputType) // required {@link ViewCheckboxesIF#getType() type}
* .setStringValue(String) // optional {@link ViewCheckboxesIF#getStringValue() stringValue}
* .addSelectedOptions|addAllSelectedOptions(com.hubspot.slack.client.models.blocks.objects.Option) // {@link ViewCheckboxesIF#getSelectedOptions() selectedOptions} elements
* .build();
*
* @return A new ViewCheckboxes builder
*/
public static ViewCheckboxes.Builder builder() {
return new ViewCheckboxes.Builder();
}
/**
* Builds instances of type {@link ViewCheckboxes ViewCheckboxes}.
* 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 = "ViewCheckboxesIF", 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 stringValue;
private List selectedOptions = new ArrayList ();
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code com.hubspot.slack.client.models.interaction.views.ViewCheckboxesIF} instance.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(ViewCheckboxesIF 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.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;
}
private void from(short _unused, Object object) {
long bits = 0;
if (object instanceof ViewCheckboxesIF) {
ViewCheckboxesIF instance = (ViewCheckboxesIF) object;
if ((bits & 0x1L) == 0) {
this.setType(instance.getType());
bits |= 0x1L;
}
addAllSelectedOptions(instance.getSelectedOptions());
if ((bits & 0x2L) == 0) {
Optional stringValueOptional = instance.getStringValue();
if (stringValueOptional.isPresent()) {
setStringValue(stringValueOptional);
}
bits |= 0x2L;
}
}
if (object instanceof ViewInput) {
ViewInput instance = (ViewInput) object;
if ((bits & 0x1L) == 0) {
this.setType(instance.getType());
bits |= 0x1L;
}
if ((bits & 0x2L) == 0) {
Optional stringValueOptional = instance.getStringValue();
if (stringValueOptional.isPresent()) {
setStringValue(stringValueOptional);
}
bits |= 0x2L;
}
}
}
/**
* Initializes the value for the {@link ViewCheckboxesIF#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 ViewCheckboxesIF#getStringValue() stringValue} to stringValue.
* @param stringValue The value for stringValue, {@code null} is accepted as {@code java.util.Optional.empty()}
* @return {@code this} builder for chained invocation
*/
public final Builder setStringValue(@Nullable String stringValue) {
this.stringValue = stringValue;
return this;
}
/**
* Initializes the optional value {@link ViewCheckboxesIF#getStringValue() stringValue} to stringValue.
* @param stringValue The value for stringValue
* @return {@code this} builder for use in a chained invocation
*/
public final Builder setStringValue(Optional stringValue) {
this.stringValue = stringValue.orElse(null);
return this;
}
/**
* Adds one element to {@link ViewCheckboxesIF#getSelectedOptions() selectedOptions} list.
* @param element A selectedOptions element
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addSelectedOptions(Option element) {
this.selectedOptions.add(Objects.requireNonNull(element, "selectedOptions element"));
return this;
}
/**
* Adds elements to {@link ViewCheckboxesIF#getSelectedOptions() selectedOptions} list.
* @param elements An array of selectedOptions elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addSelectedOptions(Option... elements) {
for (Option element : elements) {
this.selectedOptions.add(Objects.requireNonNull(element, "selectedOptions element"));
}
return this;
}
/**
* Sets or replaces all elements for {@link ViewCheckboxesIF#getSelectedOptions() selectedOptions} list.
* @param elements An iterable of selectedOptions elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder setSelectedOptions(Iterable extends Option> elements) {
this.selectedOptions.clear();
return addAllSelectedOptions(elements);
}
/**
* Adds elements to {@link ViewCheckboxesIF#getSelectedOptions() selectedOptions} list.
* @param elements An iterable of selectedOptions elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addAllSelectedOptions(Iterable extends Option> elements) {
for (Option element : elements) {
this.selectedOptions.add(Objects.requireNonNull(element, "selectedOptions element"));
}
return this;
}
/**
* Builds a new {@link ViewCheckboxes ViewCheckboxes}.
* @return An immutable instance of ViewCheckboxes
* @throws com.hubspot.immutables.validation.InvalidImmutableStateException if any required attributes are missing
*/
public ViewCheckboxes build() {
checkRequiredAttributes();
return new ViewCheckboxes(type, stringValue, createUnmodifiableList(true, selectedOptions));
}
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 ViewCheckboxes, 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);
}
}
}
}