/* * 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; /** *
* Provides information about an entity. *
**
*/ public class Entity implements Serializable { /** ** The level of confidence that Amazon Comprehend has in the accuracy of the * detection. *
*/ private Float score; /** ** The entity type. For entity detection using the built-in model, this * field contains one of the standard entity types listed below. *
** For custom entity detection, this field contains one of the entity types * that you specified when you trained your custom model. *
*
* Constraints:
* Allowed Values: PERSON, LOCATION, ORGANIZATION, COMMERCIAL_ITEM,
* EVENT, DATE, QUANTITY, TITLE, OTHER
*/
private String type;
/**
*
* The text of the entity. *
*
* Constraints:
* Length: 1 -
*/
private String text;
/**
*
* The zero-based offset from the beginning of the source text to the first * character in the entity. *
** This field is empty for non-text input. *
*/ private Integer beginOffset; /** ** The zero-based offset from the beginning of the source text to the last * character in the entity. *
** This field is empty for non-text input. *
*/ private Integer endOffset; /** ** A reference to each block for this entity. This field is empty for * plain-text input. *
*/ private java.util.List* 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 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. *
*/ public void setScore(Float score) { this.score = score; } /** ** The level of confidence that Amazon Comprehend has in the accuracy of the * detection. *
** Returns a reference to this object so that method calls can be chained * together. * * @param score
* The level of confidence that Amazon Comprehend has in the * accuracy of the detection. *
* @return A reference to this updated object so that method calls can be * chained together. */ public Entity withScore(Float score) { this.score = score; return this; } /** ** The entity type. For entity detection using the built-in model, this * field contains one of the standard entity types listed below. *
** For custom entity detection, this field contains one of the entity types * that you specified when you trained your custom model. *
*
* Constraints:
* Allowed Values: PERSON, LOCATION, ORGANIZATION, COMMERCIAL_ITEM,
* EVENT, DATE, QUANTITY, TITLE, OTHER
*
* @return
* The entity type. For entity detection using the built-in model, * this field contains one of the standard entity types listed * below. *
** For custom entity detection, this field contains one of the * entity types that you specified when you trained your custom * model. *
* @see EntityType */ public String getType() { return type; } /** ** The entity type. For entity detection using the built-in model, this * field contains one of the standard entity types listed below. *
** For custom entity detection, this field contains one of the entity types * that you specified when you trained your custom model. *
*
* Constraints:
* Allowed Values: PERSON, LOCATION, ORGANIZATION, COMMERCIAL_ITEM,
* EVENT, DATE, QUANTITY, TITLE, OTHER
*
* @param type
* The entity type. For entity detection using the built-in * model, this field contains one of the standard entity types * listed below. *
** For custom entity detection, this field contains one of the * entity types that you specified when you trained your custom * model. *
* @see EntityType */ public void setType(String type) { this.type = type; } /** ** The entity type. For entity detection using the built-in model, this * field contains one of the standard entity types listed below. *
** For custom entity detection, this field contains one of the entity types * that you specified when you trained your custom model. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: PERSON, LOCATION, ORGANIZATION, COMMERCIAL_ITEM,
* EVENT, DATE, QUANTITY, TITLE, OTHER
*
* @param type
* The entity type. For entity detection using the built-in * model, this field contains one of the standard entity types * listed below. *
** For custom entity detection, this field contains one of the * entity types that you specified when you trained your custom * model. *
* @return A reference to this updated object so that method calls can be * chained together. * @see EntityType */ public Entity withType(String type) { this.type = type; return this; } /** ** The entity type. For entity detection using the built-in model, this * field contains one of the standard entity types listed below. *
** For custom entity detection, this field contains one of the entity types * that you specified when you trained your custom model. *
*
* Constraints:
* Allowed Values: PERSON, LOCATION, ORGANIZATION, COMMERCIAL_ITEM,
* EVENT, DATE, QUANTITY, TITLE, OTHER
*
* @param type
* The entity type. For entity detection using the built-in * model, this field contains one of the standard entity types * listed below. *
** For custom entity detection, this field contains one of the * entity types that you specified when you trained your custom * model. *
* @see EntityType */ public void setType(EntityType type) { this.type = type.toString(); } /** ** The entity type. For entity detection using the built-in model, this * field contains one of the standard entity types listed below. *
** For custom entity detection, this field contains one of the entity types * that you specified when you trained your custom model. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: PERSON, LOCATION, ORGANIZATION, COMMERCIAL_ITEM,
* EVENT, DATE, QUANTITY, TITLE, OTHER
*
* @param type
* The entity type. For entity detection using the built-in * model, this field contains one of the standard entity types * listed below. *
** For custom entity detection, this field contains one of the * entity types that you specified when you trained your custom * model. *
* @return A reference to this updated object so that method calls can be * chained together. * @see EntityType */ public Entity withType(EntityType type) { this.type = type.toString(); return this; } /** ** The text of the entity. *
*
* Constraints:
* Length: 1 -
*
* @return
* The text of the entity. *
*/ public String getText() { return text; } /** ** The text of the entity. *
*
* Constraints:
* Length: 1 -
*
* @param text
* The text of the entity. *
*/ public void setText(String text) { this.text = text; } /** ** The text of the entity. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Length: 1 -
*
* @param text
* The text of the entity. *
* @return A reference to this updated object so that method calls can be * chained together. */ public Entity 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 entity. *
** This field is empty for non-text input. *
* * @return* The zero-based offset from the beginning of the source text to * the first character in the entity. *
** This field is empty for non-text input. *
*/ public Integer getBeginOffset() { return beginOffset; } /** ** The zero-based offset from the beginning of the source text to the first * character in the entity. *
** This field is empty for non-text input. *
* * @param beginOffset* The zero-based offset from the beginning of the source text to * the first character in the entity. *
** This field is empty for non-text input. *
*/ 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 entity. *
** This field is empty for non-text input. *
** 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 entity. *
** This field is empty for non-text input. *
* @return A reference to this updated object so that method calls can be * chained together. */ public Entity 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 entity. *
** This field is empty for non-text input. *
* * @return* The zero-based offset from the beginning of the source text to * the last character in the entity. *
** This field is empty for non-text input. *
*/ public Integer getEndOffset() { return endOffset; } /** ** The zero-based offset from the beginning of the source text to the last * character in the entity. *
** This field is empty for non-text input. *
* * @param endOffset* The zero-based offset from the beginning of the source text to * the last character in the entity. *
** This field is empty for non-text input. *
*/ 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 entity. *
** This field is empty for non-text input. *
** 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 entity. *
** This field is empty for non-text input. *
* @return A reference to this updated object so that method calls can be * chained together. */ public Entity withEndOffset(Integer endOffset) { this.endOffset = endOffset; return this; } /** ** A reference to each block for this entity. This field is empty for * plain-text input. *
* * @return* A reference to each block for this entity. This field is empty * for plain-text input. *
*/ public java.util.List* A reference to each block for this entity. This field is empty for * plain-text input. *
* * @param blockReferences* A reference to each block for this entity. This field is empty * for plain-text input. *
*/ public void setBlockReferences(java.util.Collection* A reference to each block for this entity. This field is empty for * plain-text input. *
** Returns a reference to this object so that method calls can be chained * together. * * @param blockReferences
* A reference to each block for this entity. This field is empty * for plain-text input. *
* @return A reference to this updated object so that method calls can be * chained together. */ public Entity withBlockReferences(BlockReference... blockReferences) { if (getBlockReferences() == null) { this.blockReferences = new java.util.ArrayList* A reference to each block for this entity. This field is empty for * plain-text input. *
** Returns a reference to this object so that method calls can be chained * together. * * @param blockReferences
* A reference to each block for this entity. This field is empty * for plain-text input. *
* @return A reference to this updated object so that method calls can be * chained together. */ public Entity withBlockReferences(java.util.Collection