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

com.amazonaws.services.textract.model.ExpenseDetection Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.760
Show newest version
/*
 * 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.textract.model;

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

/**
 * 

* An object used to store information about the Value or Label detected by Amazon Textract. *

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

* The word or line of text recognized by Amazon Textract *

*/ private String text; private Geometry geometry; /** *

* The confidence in detection, as a percentage *

*/ private Float confidence; /** *

* The word or line of text recognized by Amazon Textract *

* * @param text * The word or line of text recognized by Amazon Textract */ public void setText(String text) { this.text = text; } /** *

* The word or line of text recognized by Amazon Textract *

* * @return The word or line of text recognized by Amazon Textract */ public String getText() { return this.text; } /** *

* The word or line of text recognized by Amazon Textract *

* * @param text * The word or line of text recognized by Amazon Textract * @return Returns a reference to this object so that method calls can be chained together. */ public ExpenseDetection withText(String text) { setText(text); return this; } /** * @param geometry */ public void setGeometry(Geometry geometry) { this.geometry = geometry; } /** * @return */ public Geometry getGeometry() { return this.geometry; } /** * @param geometry * @return Returns a reference to this object so that method calls can be chained together. */ public ExpenseDetection withGeometry(Geometry geometry) { setGeometry(geometry); return this; } /** *

* The confidence in detection, as a percentage *

* * @param confidence * The confidence in detection, as a percentage */ public void setConfidence(Float confidence) { this.confidence = confidence; } /** *

* The confidence in detection, as a percentage *

* * @return The confidence in detection, as a percentage */ public Float getConfidence() { return this.confidence; } /** *

* The confidence in detection, as a percentage *

* * @param confidence * The confidence in detection, as a percentage * @return Returns a reference to this object so that method calls can be chained together. */ public ExpenseDetection withConfidence(Float confidence) { setConfidence(confidence); 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 (getText() != null) sb.append("Text: ").append(getText()).append(","); if (getGeometry() != null) sb.append("Geometry: ").append(getGeometry()).append(","); if (getConfidence() != null) sb.append("Confidence: ").append(getConfidence()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ExpenseDetection == false) return false; ExpenseDetection other = (ExpenseDetection) obj; if (other.getText() == null ^ this.getText() == null) return false; if (other.getText() != null && other.getText().equals(this.getText()) == false) return false; if (other.getGeometry() == null ^ this.getGeometry() == null) return false; if (other.getGeometry() != null && other.getGeometry().equals(this.getGeometry()) == false) return false; if (other.getConfidence() == null ^ this.getConfidence() == null) return false; if (other.getConfidence() != null && other.getConfidence().equals(this.getConfidence()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getText() == null) ? 0 : getText().hashCode()); hashCode = prime * hashCode + ((getGeometry() == null) ? 0 : getGeometry().hashCode()); hashCode = prime * hashCode + ((getConfidence() == null) ? 0 : getConfidence().hashCode()); return hashCode; } @Override public ExpenseDetection clone() { try { return (ExpenseDetection) 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.textract.model.transform.ExpenseDetectionMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy