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

com.amazonaws.services.comprehend.model.KeyPhrase Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Comprehend module holds the client classes that are used for communicating with Amazon Comprehend Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2018-2023 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.comprehend.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Describes a key noun phrase. *

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

* The level of confidence that Amazon Comprehend has in the accuracy of the detection. *

*/ private Float score; /** *

* The text of a key noun phrase. *

*/ private String text; /** *

* The zero-based offset from the beginning of the source text to the first character in the key phrase. *

*/ private Integer beginOffset; /** *

* The zero-based offset from the beginning of the source text to the last character in the key phrase. *

*/ private Integer endOffset; /** *

* The level of confidence that Amazon Comprehend has in the accuracy of the detection. *

* * @param score * The level of confidence that Amazon Comprehend has in the accuracy of the detection. */ public void setScore(Float score) { this.score = score; } /** *

* The level of confidence that Amazon Comprehend has in the accuracy of the detection. *

* * @return The level of confidence that Amazon Comprehend has in the accuracy of the detection. */ public Float getScore() { return this.score; } /** *

* The level of confidence that Amazon Comprehend has in the accuracy of the detection. *

* * @param score * The level of confidence that Amazon Comprehend has in the accuracy of the detection. * @return Returns a reference to this object so that method calls can be chained together. */ public KeyPhrase withScore(Float score) { setScore(score); return this; } /** *

* The text of a key noun phrase. *

* * @param text * The text of a key noun phrase. */ public void setText(String text) { this.text = text; } /** *

* The text of a key noun phrase. *

* * @return The text of a key noun phrase. */ public String getText() { return this.text; } /** *

* The text of a key noun phrase. *

* * @param text * The text of a key noun phrase. * @return Returns a reference to this object so that method calls can be chained together. */ public KeyPhrase withText(String text) { setText(text); return this; } /** *

* The zero-based offset from the beginning of the source text to the first character in the key phrase. *

* * @param beginOffset * The zero-based offset from the beginning of the source text to the first character in the key phrase. */ public void setBeginOffset(Integer beginOffset) { this.beginOffset = beginOffset; } /** *

* The zero-based offset from the beginning of the source text to the first character in the key phrase. *

* * @return The zero-based offset from the beginning of the source text to the first character in the key phrase. */ public Integer getBeginOffset() { return this.beginOffset; } /** *

* The zero-based offset from the beginning of the source text to the first character in the key phrase. *

* * @param beginOffset * The zero-based offset from the beginning of the source text to the first character in the key phrase. * @return Returns a reference to this object so that method calls can be chained together. */ public KeyPhrase withBeginOffset(Integer beginOffset) { setBeginOffset(beginOffset); return this; } /** *

* The zero-based offset from the beginning of the source text to the last character in the key phrase. *

* * @param endOffset * The zero-based offset from the beginning of the source text to the last character in the key phrase. */ public void setEndOffset(Integer endOffset) { this.endOffset = endOffset; } /** *

* The zero-based offset from the beginning of the source text to the last character in the key phrase. *

* * @return The zero-based offset from the beginning of the source text to the last character in the key phrase. */ public Integer getEndOffset() { return this.endOffset; } /** *

* The zero-based offset from the beginning of the source text to the last character in the key phrase. *

* * @param endOffset * The zero-based offset from the beginning of the source text to the last character in the key phrase. * @return Returns a reference to this object so that method calls can be chained together. */ public KeyPhrase withEndOffset(Integer endOffset) { setEndOffset(endOffset); 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 (getScore() != null) sb.append("Score: ").append(getScore()).append(","); if (getText() != null) sb.append("Text: ").append(getText()).append(","); if (getBeginOffset() != null) sb.append("BeginOffset: ").append(getBeginOffset()).append(","); if (getEndOffset() != null) sb.append("EndOffset: ").append(getEndOffset()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof KeyPhrase == false) return false; KeyPhrase other = (KeyPhrase) obj; if (other.getScore() == null ^ this.getScore() == null) return false; if (other.getScore() != null && other.getScore().equals(this.getScore()) == false) return false; if (other.getText() == null ^ this.getText() == null) return false; if (other.getText() != null && other.getText().equals(this.getText()) == false) return false; if (other.getBeginOffset() == null ^ this.getBeginOffset() == null) return false; if (other.getBeginOffset() != null && other.getBeginOffset().equals(this.getBeginOffset()) == false) return false; if (other.getEndOffset() == null ^ this.getEndOffset() == null) return false; if (other.getEndOffset() != null && other.getEndOffset().equals(this.getEndOffset()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getScore() == null) ? 0 : getScore().hashCode()); hashCode = prime * hashCode + ((getText() == null) ? 0 : getText().hashCode()); hashCode = prime * hashCode + ((getBeginOffset() == null) ? 0 : getBeginOffset().hashCode()); hashCode = prime * hashCode + ((getEndOffset() == null) ? 0 : getEndOffset().hashCode()); return hashCode; } @Override public KeyPhrase clone() { try { return (KeyPhrase) 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.comprehend.model.transform.KeyPhraseMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy