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

software.amazon.awssdk.services.lexmodelsv2.model.ConditionalBranch Maven / Gradle / Ivy

/*
 * 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.lexmodelsv2.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
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;

/**
 * 

* A set of actions that Amazon Lex should run if the condition is matched. *

*/ @Generated("software.amazon.awssdk:codegen") public final class ConditionalBranch implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name") .getter(getter(ConditionalBranch::name)).setter(setter(Builder::name)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("name").build()).build(); private static final SdkField CONDITION_FIELD = SdkField. builder(MarshallingType.SDK_POJO) .memberName("condition").getter(getter(ConditionalBranch::condition)).setter(setter(Builder::condition)) .constructor(Condition::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("condition").build()).build(); private static final SdkField NEXT_STEP_FIELD = SdkField. builder(MarshallingType.SDK_POJO) .memberName("nextStep").getter(getter(ConditionalBranch::nextStep)).setter(setter(Builder::nextStep)) .constructor(DialogState::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("nextStep").build()).build(); private static final SdkField RESPONSE_FIELD = SdkField . builder(MarshallingType.SDK_POJO).memberName("response") .getter(getter(ConditionalBranch::response)).setter(setter(Builder::response)) .constructor(ResponseSpecification::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("response").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(NAME_FIELD, CONDITION_FIELD, NEXT_STEP_FIELD, RESPONSE_FIELD)); private static final long serialVersionUID = 1L; private final String name; private final Condition condition; private final DialogState nextStep; private final ResponseSpecification response; private ConditionalBranch(BuilderImpl builder) { this.name = builder.name; this.condition = builder.condition; this.nextStep = builder.nextStep; this.response = builder.response; } /** *

* The name of the branch. *

* * @return The name of the branch. */ public final String name() { return name; } /** *

* Contains the expression to evaluate. If the condition is true, the branch's actions are taken. *

* * @return Contains the expression to evaluate. If the condition is true, the branch's actions are taken. */ public final Condition condition() { return condition; } /** *

* The next step in the conversation. *

* * @return The next step in the conversation. */ public final DialogState nextStep() { return nextStep; } /** * Returns the value of the Response property for this object. * * @return The value of the Response property for this object. */ public final ResponseSpecification response() { return response; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(name()); hashCode = 31 * hashCode + Objects.hashCode(condition()); hashCode = 31 * hashCode + Objects.hashCode(nextStep()); hashCode = 31 * hashCode + Objects.hashCode(response()); 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 ConditionalBranch)) { return false; } ConditionalBranch other = (ConditionalBranch) obj; return Objects.equals(name(), other.name()) && Objects.equals(condition(), other.condition()) && Objects.equals(nextStep(), other.nextStep()) && Objects.equals(response(), other.response()); } /** * 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("ConditionalBranch").add("Name", name()).add("Condition", condition()) .add("NextStep", nextStep()).add("Response", response()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "name": return Optional.ofNullable(clazz.cast(name())); case "condition": return Optional.ofNullable(clazz.cast(condition())); case "nextStep": return Optional.ofNullable(clazz.cast(nextStep())); case "response": return Optional.ofNullable(clazz.cast(response())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ConditionalBranch) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The name of the branch. *

* * @param name * The name of the branch. * @return Returns a reference to this object so that method calls can be chained together. */ Builder name(String name); /** *

* Contains the expression to evaluate. If the condition is true, the branch's actions are taken. *

* * @param condition * Contains the expression to evaluate. If the condition is true, the branch's actions are taken. * @return Returns a reference to this object so that method calls can be chained together. */ Builder condition(Condition condition); /** *

* Contains the expression to evaluate. If the condition is true, the branch's actions are taken. *

* This is a convenience method that creates an instance of the {@link Condition.Builder} avoiding the need to * create one manually via {@link Condition#builder()}. * * When the {@link Consumer} completes, {@link Condition.Builder#build()} is called immediately and its result * is passed to {@link #condition(Condition)}. * * @param condition * a consumer that will call methods on {@link Condition.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #condition(Condition) */ default Builder condition(Consumer condition) { return condition(Condition.builder().applyMutation(condition).build()); } /** *

* The next step in the conversation. *

* * @param nextStep * The next step in the conversation. * @return Returns a reference to this object so that method calls can be chained together. */ Builder nextStep(DialogState nextStep); /** *

* The next step in the conversation. *

* This is a convenience method that creates an instance of the {@link DialogState.Builder} avoiding the need to * create one manually via {@link DialogState#builder()}. * * When the {@link Consumer} completes, {@link DialogState.Builder#build()} is called immediately and its result * is passed to {@link #nextStep(DialogState)}. * * @param nextStep * a consumer that will call methods on {@link DialogState.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #nextStep(DialogState) */ default Builder nextStep(Consumer nextStep) { return nextStep(DialogState.builder().applyMutation(nextStep).build()); } /** * Sets the value of the Response property for this object. * * @param response * The new value for the Response property for this object. * @return Returns a reference to this object so that method calls can be chained together. */ Builder response(ResponseSpecification response); /** * Sets the value of the Response property for this object. * * This is a convenience method that creates an instance of the {@link ResponseSpecification.Builder} avoiding * the need to create one manually via {@link ResponseSpecification#builder()}. * * When the {@link Consumer} completes, {@link ResponseSpecification.Builder#build()} is called immediately and * its result is passed to {@link #response(ResponseSpecification)}. * * @param response * a consumer that will call methods on {@link ResponseSpecification.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #response(ResponseSpecification) */ default Builder response(Consumer response) { return response(ResponseSpecification.builder().applyMutation(response).build()); } } static final class BuilderImpl implements Builder { private String name; private Condition condition; private DialogState nextStep; private ResponseSpecification response; private BuilderImpl() { } private BuilderImpl(ConditionalBranch model) { name(model.name); condition(model.condition); nextStep(model.nextStep); response(model.response); } public final String getName() { return name; } public final void setName(String name) { this.name = name; } @Override public final Builder name(String name) { this.name = name; return this; } public final Condition.Builder getCondition() { return condition != null ? condition.toBuilder() : null; } public final void setCondition(Condition.BuilderImpl condition) { this.condition = condition != null ? condition.build() : null; } @Override public final Builder condition(Condition condition) { this.condition = condition; return this; } public final DialogState.Builder getNextStep() { return nextStep != null ? nextStep.toBuilder() : null; } public final void setNextStep(DialogState.BuilderImpl nextStep) { this.nextStep = nextStep != null ? nextStep.build() : null; } @Override public final Builder nextStep(DialogState nextStep) { this.nextStep = nextStep; return this; } public final ResponseSpecification.Builder getResponse() { return response != null ? response.toBuilder() : null; } public final void setResponse(ResponseSpecification.BuilderImpl response) { this.response = response != null ? response.build() : null; } @Override public final Builder response(ResponseSpecification response) { this.response = response; return this; } @Override public ConditionalBranch build() { return new ConditionalBranch(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy