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

com.hubspot.slack.client.models.interaction.views.ViewTimePicker 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.hubspot.immutables.validation.InvalidImmutableStateException;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.time.LocalTime;
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 ViewTimePickerIF}.
 * 

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

   * ViewTimePicker.builder()
   *    .setType(com.hubspot.slack.client.models.interaction.views.ViewInputType) // required {@link ViewTimePickerIF#getType() type}
   *    .setStringValue(String) // optional {@link ViewTimePickerIF#getStringValue() stringValue}
   *    .setSelectedTime(java.time.LocalTime) // optional {@link ViewTimePickerIF#getSelectedTime() selectedTime}
   *    .build();
   * 
* @return A new ViewTimePicker builder */ public static ViewTimePicker.Builder builder() { return new ViewTimePicker.Builder(); } /** * Builds instances of type {@link ViewTimePicker ViewTimePicker}. * 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 = "ViewTimePickerIF", 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 @Nullable LocalTime selectedTime; private Builder() { } /** * Fill a builder with attribute values from the provided {@code com.hubspot.slack.client.models.interaction.views.ViewTimePickerIF} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(ViewTimePickerIF 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 ViewTimePickerIF) { ViewTimePickerIF instance = (ViewTimePickerIF) object; Optional selectedTimeOptional = instance.getSelectedTime(); if (selectedTimeOptional.isPresent()) { setSelectedTime(selectedTimeOptional); } 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; } } 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 ViewTimePickerIF#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 ViewTimePickerIF#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 ViewTimePickerIF#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; } /** * Initializes the optional value {@link ViewTimePickerIF#getSelectedTime() selectedTime} to selectedTime. * @param selectedTime The value for selectedTime, {@code null} is accepted as {@code java.util.Optional.empty()} * @return {@code this} builder for chained invocation */ public final Builder setSelectedTime(@Nullable LocalTime selectedTime) { this.selectedTime = selectedTime; return this; } /** * Initializes the optional value {@link ViewTimePickerIF#getSelectedTime() selectedTime} to selectedTime. * @param selectedTime The value for selectedTime * @return {@code this} builder for use in a chained invocation */ public final Builder setSelectedTime(Optional selectedTime) { this.selectedTime = selectedTime.orElse(null); return this; } /** * Builds a new {@link ViewTimePicker ViewTimePicker}. * @return An immutable instance of ViewTimePicker * @throws com.hubspot.immutables.validation.InvalidImmutableStateException if any required attributes are missing */ public ViewTimePicker build() { checkRequiredAttributes(); return new ViewTimePicker(type, stringValue, selectedTime); } 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 ViewTimePicker, some of required attributes are not set " + attributes; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy