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

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

/*
 * 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.textract.model;

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

/**
 * 

* Information about where the following items are located on a document page: detected page, text, key-value pairs, * tables, table cells, and selection elements. *

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

* An axis-aligned coarse representation of the location of the recognized item on the document page. *

*/ private BoundingBox boundingBox; /** *

* Within the bounding box, a fine-grained polygon around the recognized item. *

*/ private java.util.List polygon; /** *

* An axis-aligned coarse representation of the location of the recognized item on the document page. *

* * @param boundingBox * An axis-aligned coarse representation of the location of the recognized item on the document page. */ public void setBoundingBox(BoundingBox boundingBox) { this.boundingBox = boundingBox; } /** *

* An axis-aligned coarse representation of the location of the recognized item on the document page. *

* * @return An axis-aligned coarse representation of the location of the recognized item on the document page. */ public BoundingBox getBoundingBox() { return this.boundingBox; } /** *

* An axis-aligned coarse representation of the location of the recognized item on the document page. *

* * @param boundingBox * An axis-aligned coarse representation of the location of the recognized item on the document page. * @return Returns a reference to this object so that method calls can be chained together. */ public Geometry withBoundingBox(BoundingBox boundingBox) { setBoundingBox(boundingBox); return this; } /** *

* Within the bounding box, a fine-grained polygon around the recognized item. *

* * @return Within the bounding box, a fine-grained polygon around the recognized item. */ public java.util.List getPolygon() { return polygon; } /** *

* Within the bounding box, a fine-grained polygon around the recognized item. *

* * @param polygon * Within the bounding box, a fine-grained polygon around the recognized item. */ public void setPolygon(java.util.Collection polygon) { if (polygon == null) { this.polygon = null; return; } this.polygon = new java.util.ArrayList(polygon); } /** *

* Within the bounding box, a fine-grained polygon around the recognized item. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setPolygon(java.util.Collection)} or {@link #withPolygon(java.util.Collection)} if you want to override * the existing values. *

* * @param polygon * Within the bounding box, a fine-grained polygon around the recognized item. * @return Returns a reference to this object so that method calls can be chained together. */ public Geometry withPolygon(Point... polygon) { if (this.polygon == null) { setPolygon(new java.util.ArrayList(polygon.length)); } for (Point ele : polygon) { this.polygon.add(ele); } return this; } /** *

* Within the bounding box, a fine-grained polygon around the recognized item. *

* * @param polygon * Within the bounding box, a fine-grained polygon around the recognized item. * @return Returns a reference to this object so that method calls can be chained together. */ public Geometry withPolygon(java.util.Collection polygon) { setPolygon(polygon); 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 (getBoundingBox() != null) sb.append("BoundingBox: ").append(getBoundingBox()).append(","); if (getPolygon() != null) sb.append("Polygon: ").append(getPolygon()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Geometry == false) return false; Geometry other = (Geometry) obj; if (other.getBoundingBox() == null ^ this.getBoundingBox() == null) return false; if (other.getBoundingBox() != null && other.getBoundingBox().equals(this.getBoundingBox()) == false) return false; if (other.getPolygon() == null ^ this.getPolygon() == null) return false; if (other.getPolygon() != null && other.getPolygon().equals(this.getPolygon()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getBoundingBox() == null) ? 0 : getBoundingBox().hashCode()); hashCode = prime * hashCode + ((getPolygon() == null) ? 0 : getPolygon().hashCode()); return hashCode; } @Override public Geometry clone() { try { return (Geometry) 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.GeometryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy