com.amazonaws.services.connectcontactlens.model.Categories Maven / Gradle / Ivy
Show all versions of aws-java-sdk-connectcontactlens Show documentation
/*
* 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.connectcontactlens.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Provides the category rules that are used to automatically categorize contacts based on uttered keywords and phrases.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Categories implements Serializable, Cloneable, StructuredPojo {
/**
*
* The category rules that have been matched in the analyzed segment.
*
*/
private java.util.List matchedCategories;
/**
*
* The category rule that was matched and when it occurred in the transcript.
*
*/
private java.util.Map matchedDetails;
/**
*
* The category rules that have been matched in the analyzed segment.
*
*
* @return The category rules that have been matched in the analyzed segment.
*/
public java.util.List getMatchedCategories() {
return matchedCategories;
}
/**
*
* The category rules that have been matched in the analyzed segment.
*
*
* @param matchedCategories
* The category rules that have been matched in the analyzed segment.
*/
public void setMatchedCategories(java.util.Collection matchedCategories) {
if (matchedCategories == null) {
this.matchedCategories = null;
return;
}
this.matchedCategories = new java.util.ArrayList(matchedCategories);
}
/**
*
* The category rules that have been matched in the analyzed segment.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setMatchedCategories(java.util.Collection)} or {@link #withMatchedCategories(java.util.Collection)} if
* you want to override the existing values.
*
*
* @param matchedCategories
* The category rules that have been matched in the analyzed segment.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Categories withMatchedCategories(String... matchedCategories) {
if (this.matchedCategories == null) {
setMatchedCategories(new java.util.ArrayList(matchedCategories.length));
}
for (String ele : matchedCategories) {
this.matchedCategories.add(ele);
}
return this;
}
/**
*
* The category rules that have been matched in the analyzed segment.
*
*
* @param matchedCategories
* The category rules that have been matched in the analyzed segment.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Categories withMatchedCategories(java.util.Collection matchedCategories) {
setMatchedCategories(matchedCategories);
return this;
}
/**
*
* The category rule that was matched and when it occurred in the transcript.
*
*
* @return The category rule that was matched and when it occurred in the transcript.
*/
public java.util.Map getMatchedDetails() {
return matchedDetails;
}
/**
*
* The category rule that was matched and when it occurred in the transcript.
*
*
* @param matchedDetails
* The category rule that was matched and when it occurred in the transcript.
*/
public void setMatchedDetails(java.util.Map matchedDetails) {
this.matchedDetails = matchedDetails;
}
/**
*
* The category rule that was matched and when it occurred in the transcript.
*
*
* @param matchedDetails
* The category rule that was matched and when it occurred in the transcript.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Categories withMatchedDetails(java.util.Map matchedDetails) {
setMatchedDetails(matchedDetails);
return this;
}
/**
* Add a single MatchedDetails entry
*
* @see Categories#withMatchedDetails
* @returns a reference to this object so that method calls can be chained together.
*/
public Categories addMatchedDetailsEntry(String key, CategoryDetails value) {
if (null == this.matchedDetails) {
this.matchedDetails = new java.util.HashMap();
}
if (this.matchedDetails.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.matchedDetails.put(key, value);
return this;
}
/**
* Removes all the entries added into MatchedDetails.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Categories clearMatchedDetailsEntries() {
this.matchedDetails = null;
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 (getMatchedCategories() != null)
sb.append("MatchedCategories: ").append(getMatchedCategories()).append(",");
if (getMatchedDetails() != null)
sb.append("MatchedDetails: ").append(getMatchedDetails());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Categories == false)
return false;
Categories other = (Categories) obj;
if (other.getMatchedCategories() == null ^ this.getMatchedCategories() == null)
return false;
if (other.getMatchedCategories() != null && other.getMatchedCategories().equals(this.getMatchedCategories()) == false)
return false;
if (other.getMatchedDetails() == null ^ this.getMatchedDetails() == null)
return false;
if (other.getMatchedDetails() != null && other.getMatchedDetails().equals(this.getMatchedDetails()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMatchedCategories() == null) ? 0 : getMatchedCategories().hashCode());
hashCode = prime * hashCode + ((getMatchedDetails() == null) ? 0 : getMatchedDetails().hashCode());
return hashCode;
}
@Override
public Categories clone() {
try {
return (Categories) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.connectcontactlens.model.transform.CategoriesMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}