/* * Copyright 2010-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; /** *

* Represents a work in the input text that was recognized and assigned a part * of speech. There is one syntax token record for each word in the source text. *

*/ public class SyntaxToken implements Serializable { /** *

* A unique identifier for a token. *

*/ private Integer tokenId; /** *

* The word that was recognized in the source text. *

*

* Constraints:
* Length: 1 -
*/ private String text; /** *

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

*/ private Integer beginOffset; /** *

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

*/ private Integer endOffset; /** *

* Provides the part of speech label and the confidence level that Amazon * Comprehend has that the part of speech was correctly identified. For more * information, see Syntax in the Comprehend Developer Guide. *

*/ private PartOfSpeechTag partOfSpeech; /** *

* A unique identifier for a token. *

* * @return

* A unique identifier for a token. *

*/ public Integer getTokenId() { return tokenId; } /** *

* A unique identifier for a token. *

* * @param tokenId

* A unique identifier for a token. *

*/ public void setTokenId(Integer tokenId) { this.tokenId = tokenId; } /** *

* A unique identifier for a token. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param tokenId

* A unique identifier for a token. *

* @return A reference to this updated object so that method calls can be * chained together. */ public SyntaxToken withTokenId(Integer tokenId) { this.tokenId = tokenId; return this; } /** *

* The word that was recognized in the source text. *

*

* Constraints:
* Length: 1 -
* * @return

* The word that was recognized in the source text. *

*/ public String getText() { return text; } /** *

* The word that was recognized in the source text. *

*

* Constraints:
* Length: 1 -
* * @param text

* The word that was recognized in the source text. *

*/ public void setText(String text) { this.text = text; } /** *

* The word that was recognized in the source text. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 1 -
* * @param text

* The word that was recognized in the source text. *

* @return A reference to this updated object so that method calls can be * chained together. */ public SyntaxToken withText(String text) { this.text = text; return this; } /** *

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

* * @return

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

*/ public Integer getBeginOffset() { return beginOffset; } /** *

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

* * @param beginOffset

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

*/ 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 word. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param beginOffset

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

* @return A reference to this updated object so that method calls can be * chained together. */ public SyntaxToken withBeginOffset(Integer beginOffset) { this.beginOffset = beginOffset; return this; } /** *

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

* * @return

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

*/ public Integer getEndOffset() { return endOffset; } /** *

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

* * @param endOffset

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

*/ 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 word. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param endOffset

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

* @return A reference to this updated object so that method calls can be * chained together. */ public SyntaxToken withEndOffset(Integer endOffset) { this.endOffset = endOffset; return this; } /** *

* Provides the part of speech label and the confidence level that Amazon * Comprehend has that the part of speech was correctly identified. For more * information, see Syntax in the Comprehend Developer Guide. *

* * @return

* Provides the part of speech label and the confidence level that * Amazon Comprehend has that the part of speech was correctly * identified. For more information, see Syntax in the Comprehend Developer Guide. *

*/ public PartOfSpeechTag getPartOfSpeech() { return partOfSpeech; } /** *

* Provides the part of speech label and the confidence level that Amazon * Comprehend has that the part of speech was correctly identified. For more * information, see Syntax in the Comprehend Developer Guide. *

* * @param partOfSpeech

* Provides the part of speech label and the confidence level * that Amazon Comprehend has that the part of speech was * correctly identified. For more information, see Syntax in the Comprehend Developer Guide. *

*/ public void setPartOfSpeech(PartOfSpeechTag partOfSpeech) { this.partOfSpeech = partOfSpeech; } /** *

* Provides the part of speech label and the confidence level that Amazon * Comprehend has that the part of speech was correctly identified. For more * information, see Syntax in the Comprehend Developer Guide. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param partOfSpeech

* Provides the part of speech label and the confidence level * that Amazon Comprehend has that the part of speech was * correctly identified. For more information, see Syntax in the Comprehend Developer Guide. *

* @return A reference to this updated object so that method calls can be * chained together. */ public SyntaxToken withPartOfSpeech(PartOfSpeechTag partOfSpeech) { this.partOfSpeech = partOfSpeech; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getTokenId() != null) sb.append("TokenId: " + getTokenId() + ","); if (getText() != null) sb.append("Text: " + getText() + ","); if (getBeginOffset() != null) sb.append("BeginOffset: " + getBeginOffset() + ","); if (getEndOffset() != null) sb.append("EndOffset: " + getEndOffset() + ","); if (getPartOfSpeech() != null) sb.append("PartOfSpeech: " + getPartOfSpeech()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTokenId() == null) ? 0 : getTokenId().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()); hashCode = prime * hashCode + ((getPartOfSpeech() == null) ? 0 : getPartOfSpeech().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SyntaxToken == false) return false; SyntaxToken other = (SyntaxToken) obj; if (other.getTokenId() == null ^ this.getTokenId() == null) return false; if (other.getTokenId() != null && other.getTokenId().equals(this.getTokenId()) == 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; if (other.getPartOfSpeech() == null ^ this.getPartOfSpeech() == null) return false; if (other.getPartOfSpeech() != null && other.getPartOfSpeech().equals(this.getPartOfSpeech()) == false) return false; return true; } }