software.amazon.awssdk.services.qapps.model.FormInputCardInput Maven / Gradle / Ivy
Show all versions of qapps Show documentation
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package software.amazon.awssdk.services.qapps.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Represents a form input card for an Amazon Q App.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class FormInputCardInput implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField TITLE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("title")
.getter(getter(FormInputCardInput::title)).setter(setter(Builder::title))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("title").build()).build();
private static final SdkField ID_FIELD = SdkField. builder(MarshallingType.STRING).memberName("id")
.getter(getter(FormInputCardInput::id)).setter(setter(Builder::id))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("id").build()).build();
private static final SdkField TYPE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("type")
.getter(getter(FormInputCardInput::typeAsString)).setter(setter(Builder::type))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("type").build()).build();
private static final SdkField METADATA_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("metadata")
.getter(getter(FormInputCardInput::metadata)).setter(setter(Builder::metadata))
.constructor(FormInputCardMetadata::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("metadata").build()).build();
private static final SdkField COMPUTE_MODE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("computeMode").getter(getter(FormInputCardInput::computeModeAsString))
.setter(setter(Builder::computeMode))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("computeMode").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(TITLE_FIELD, ID_FIELD,
TYPE_FIELD, METADATA_FIELD, COMPUTE_MODE_FIELD));
private static final Map> SDK_NAME_TO_FIELD = memberNameToFieldInitializer();
private static final long serialVersionUID = 1L;
private final String title;
private final String id;
private final String type;
private final FormInputCardMetadata metadata;
private final String computeMode;
private FormInputCardInput(BuilderImpl builder) {
this.title = builder.title;
this.id = builder.id;
this.type = builder.type;
this.metadata = builder.metadata;
this.computeMode = builder.computeMode;
}
/**
*
* The title or label of the form input card.
*
*
* @return The title or label of the form input card.
*/
public final String title() {
return title;
}
/**
*
* The unique identifier of the form input card.
*
*
* @return The unique identifier of the form input card.
*/
public final String id() {
return id;
}
/**
*
* The type of the card.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return
* {@link CardType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #typeAsString}.
*
*
* @return The type of the card.
* @see CardType
*/
public final CardType type() {
return CardType.fromValue(type);
}
/**
*
* The type of the card.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return
* {@link CardType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #typeAsString}.
*
*
* @return The type of the card.
* @see CardType
*/
public final String typeAsString() {
return type;
}
/**
*
* The metadata that defines the form input card data.
*
*
* @return The metadata that defines the form input card data.
*/
public final FormInputCardMetadata metadata() {
return metadata;
}
/**
*
* The compute mode of the form input card. This property determines whether individual participants of a data
* collection session can submit multiple response or one response. A compute mode of append
shall
* allow participants to submit the same form multiple times with different values. A compute mode of
* replace
code> shall overwrite the current value for each participant.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #computeMode} will
* return {@link InputCardComputeMode#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #computeModeAsString}.
*
*
* @return The compute mode of the form input card. This property determines whether individual participants of a
* data collection session can submit multiple response or one response. A compute mode of
* append
shall allow participants to submit the same form multiple times with different
* values. A compute mode of replace
code> shall overwrite the current value for each
* participant.
* @see InputCardComputeMode
*/
public final InputCardComputeMode computeMode() {
return InputCardComputeMode.fromValue(computeMode);
}
/**
*
* The compute mode of the form input card. This property determines whether individual participants of a data
* collection session can submit multiple response or one response. A compute mode of append
shall
* allow participants to submit the same form multiple times with different values. A compute mode of
* replace
code> shall overwrite the current value for each participant.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #computeMode} will
* return {@link InputCardComputeMode#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #computeModeAsString}.
*
*
* @return The compute mode of the form input card. This property determines whether individual participants of a
* data collection session can submit multiple response or one response. A compute mode of
* append
shall allow participants to submit the same form multiple times with different
* values. A compute mode of replace
code> shall overwrite the current value for each
* participant.
* @see InputCardComputeMode
*/
public final String computeModeAsString() {
return computeMode;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(title());
hashCode = 31 * hashCode + Objects.hashCode(id());
hashCode = 31 * hashCode + Objects.hashCode(typeAsString());
hashCode = 31 * hashCode + Objects.hashCode(metadata());
hashCode = 31 * hashCode + Objects.hashCode(computeModeAsString());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof FormInputCardInput)) {
return false;
}
FormInputCardInput other = (FormInputCardInput) obj;
return Objects.equals(title(), other.title()) && Objects.equals(id(), other.id())
&& Objects.equals(typeAsString(), other.typeAsString()) && Objects.equals(metadata(), other.metadata())
&& Objects.equals(computeModeAsString(), other.computeModeAsString());
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public final String toString() {
return ToString.builder("FormInputCardInput").add("Title", title()).add("Id", id()).add("Type", typeAsString())
.add("Metadata", metadata()).add("ComputeMode", computeModeAsString()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "title":
return Optional.ofNullable(clazz.cast(title()));
case "id":
return Optional.ofNullable(clazz.cast(id()));
case "type":
return Optional.ofNullable(clazz.cast(typeAsString()));
case "metadata":
return Optional.ofNullable(clazz.cast(metadata()));
case "computeMode":
return Optional.ofNullable(clazz.cast(computeModeAsString()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
@Override
public final Map> sdkFieldNameToField() {
return SDK_NAME_TO_FIELD;
}
private static Map> memberNameToFieldInitializer() {
Map> map = new HashMap<>();
map.put("title", TITLE_FIELD);
map.put("id", ID_FIELD);
map.put("type", TYPE_FIELD);
map.put("metadata", METADATA_FIELD);
map.put("computeMode", COMPUTE_MODE_FIELD);
return Collections.unmodifiableMap(map);
}
private static Function