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

com.amazonaws.services.lexmodelbuilding.model.GetBuiltinIntentResult Maven / Gradle / Ivy

/*
 * Copyright 2019-2024 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 com.amazonaws.services.lexmodelbuilding.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetBuiltinIntentResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {

    /**
     * 

* The unique identifier for a built-in intent. *

*/ private String signature; /** *

* A list of locales that the intent supports. *

*/ private java.util.List supportedLocales; /** *

* An array of BuiltinIntentSlot objects, one entry for each slot type in the intent. *

*/ private java.util.List slots; /** *

* The unique identifier for a built-in intent. *

* * @param signature * The unique identifier for a built-in intent. */ public void setSignature(String signature) { this.signature = signature; } /** *

* The unique identifier for a built-in intent. *

* * @return The unique identifier for a built-in intent. */ public String getSignature() { return this.signature; } /** *

* The unique identifier for a built-in intent. *

* * @param signature * The unique identifier for a built-in intent. * @return Returns a reference to this object so that method calls can be chained together. */ public GetBuiltinIntentResult withSignature(String signature) { setSignature(signature); return this; } /** *

* A list of locales that the intent supports. *

* * @return A list of locales that the intent supports. * @see Locale */ public java.util.List getSupportedLocales() { return supportedLocales; } /** *

* A list of locales that the intent supports. *

* * @param supportedLocales * A list of locales that the intent supports. * @see Locale */ public void setSupportedLocales(java.util.Collection supportedLocales) { if (supportedLocales == null) { this.supportedLocales = null; return; } this.supportedLocales = new java.util.ArrayList(supportedLocales); } /** *

* A list of locales that the intent supports. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setSupportedLocales(java.util.Collection)} or {@link #withSupportedLocales(java.util.Collection)} if you * want to override the existing values. *

* * @param supportedLocales * A list of locales that the intent supports. * @return Returns a reference to this object so that method calls can be chained together. * @see Locale */ public GetBuiltinIntentResult withSupportedLocales(String... supportedLocales) { if (this.supportedLocales == null) { setSupportedLocales(new java.util.ArrayList(supportedLocales.length)); } for (String ele : supportedLocales) { this.supportedLocales.add(ele); } return this; } /** *

* A list of locales that the intent supports. *

* * @param supportedLocales * A list of locales that the intent supports. * @return Returns a reference to this object so that method calls can be chained together. * @see Locale */ public GetBuiltinIntentResult withSupportedLocales(java.util.Collection supportedLocales) { setSupportedLocales(supportedLocales); return this; } /** *

* A list of locales that the intent supports. *

* * @param supportedLocales * A list of locales that the intent supports. * @return Returns a reference to this object so that method calls can be chained together. * @see Locale */ public GetBuiltinIntentResult withSupportedLocales(Locale... supportedLocales) { java.util.ArrayList supportedLocalesCopy = new java.util.ArrayList(supportedLocales.length); for (Locale value : supportedLocales) { supportedLocalesCopy.add(value.toString()); } if (getSupportedLocales() == null) { setSupportedLocales(supportedLocalesCopy); } else { getSupportedLocales().addAll(supportedLocalesCopy); } return this; } /** *

* An array of BuiltinIntentSlot objects, one entry for each slot type in the intent. *

* * @return An array of BuiltinIntentSlot objects, one entry for each slot type in the intent. */ public java.util.List getSlots() { return slots; } /** *

* An array of BuiltinIntentSlot objects, one entry for each slot type in the intent. *

* * @param slots * An array of BuiltinIntentSlot objects, one entry for each slot type in the intent. */ public void setSlots(java.util.Collection slots) { if (slots == null) { this.slots = null; return; } this.slots = new java.util.ArrayList(slots); } /** *

* An array of BuiltinIntentSlot objects, one entry for each slot type in the intent. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setSlots(java.util.Collection)} or {@link #withSlots(java.util.Collection)} if you want to override the * existing values. *

* * @param slots * An array of BuiltinIntentSlot objects, one entry for each slot type in the intent. * @return Returns a reference to this object so that method calls can be chained together. */ public GetBuiltinIntentResult withSlots(BuiltinIntentSlot... slots) { if (this.slots == null) { setSlots(new java.util.ArrayList(slots.length)); } for (BuiltinIntentSlot ele : slots) { this.slots.add(ele); } return this; } /** *

* An array of BuiltinIntentSlot objects, one entry for each slot type in the intent. *

* * @param slots * An array of BuiltinIntentSlot objects, one entry for each slot type in the intent. * @return Returns a reference to this object so that method calls can be chained together. */ public GetBuiltinIntentResult withSlots(java.util.Collection slots) { setSlots(slots); return this; } /** * 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. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getSignature() != null) sb.append("Signature: ").append(getSignature()).append(","); if (getSupportedLocales() != null) sb.append("SupportedLocales: ").append(getSupportedLocales()).append(","); if (getSlots() != null) sb.append("Slots: ").append(getSlots()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetBuiltinIntentResult == false) return false; GetBuiltinIntentResult other = (GetBuiltinIntentResult) obj; if (other.getSignature() == null ^ this.getSignature() == null) return false; if (other.getSignature() != null && other.getSignature().equals(this.getSignature()) == false) return false; if (other.getSupportedLocales() == null ^ this.getSupportedLocales() == null) return false; if (other.getSupportedLocales() != null && other.getSupportedLocales().equals(this.getSupportedLocales()) == false) return false; if (other.getSlots() == null ^ this.getSlots() == null) return false; if (other.getSlots() != null && other.getSlots().equals(this.getSlots()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getSignature() == null) ? 0 : getSignature().hashCode()); hashCode = prime * hashCode + ((getSupportedLocales() == null) ? 0 : getSupportedLocales().hashCode()); hashCode = prime * hashCode + ((getSlots() == null) ? 0 : getSlots().hashCode()); return hashCode; } @Override public GetBuiltinIntentResult clone() { try { return (GetBuiltinIntentResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy