Uses of Class
com.attivio.sdk.geo.Shape
-
Packages that use Shape Package Description com.attivio.sdk.geo Model for geo-search API objects.com.attivio.sdk.ingest com.attivio.sdk.search com.attivio.sdk.search.query com.attivio.sdk.server.udf API for implementing user defined field expression.com.attivio.util Contains utility classes and methods used across the Attivio code base. -
-
Uses of Shape in com.attivio.sdk.geo
Subclasses of Shape in com.attivio.sdk.geo Modifier and Type Class Description class
AbstractEllipse
Abstract ellipse definition.class
AbstractPolygon
Abstract polygon definition.class
Circle
Defines a circle.class
Ellipse
Defines an ellipse.class
Polygon
Defines a polygon.class
Rectangle
Defines a rectangle.Methods in com.attivio.sdk.geo that return Shape Modifier and Type Method Description Shape
Shape. clone()
abstract Shape
Shape. readExternal(java.io.DataInput in)
static Shape
Shape. valueOf(java.lang.Object value)
Methods in com.attivio.sdk.geo with parameters of type Shape Modifier and Type Method Description int
Shape. compareTo(Shape other)
Shape comparison compares bounding box area.static Rectangle
Rectangle. getBoundingBox(Shape a, Shape b)
Get a bounding box that contains botha
andb
.boolean
AbstractEllipse. intersects(Rectangle box, Shape other)
Check if this shape intersects withother
.boolean
AbstractPolygon. intersects(Rectangle box, Shape other)
Check if this shape intersects withother
.boolean
Circle. intersects(Rectangle box, Shape shape)
Check if this shape intersects withother
.boolean
Ellipse. intersects(Rectangle box, Shape shape)
Check if this shape intersects withother
.boolean
Rectangle. intersects(Rectangle box, Shape other)
Check if this shape intersects withother
.abstract boolean
Shape. intersects(Rectangle box, Shape other)
Check if this shape intersects withother
.boolean
Shape. intersects(Shape other)
Check if this shape intersects withother
. -
Uses of Shape in com.attivio.sdk.ingest
Methods in com.attivio.sdk.ingest that return Shape Modifier and Type Method Description Shape
IngestFieldValue. shapeValue()
Gets the value as aShape
.Methods in com.attivio.sdk.ingest with parameters of type Shape Modifier and Type Method Description void
IngestDocument. addValue(java.lang.String name, Shape value)
Add aShape
value tofield
.void
IngestField. addValue(Shape value)
Add aShape
value to thisIngestField
.void
IngestDocument. addValues(java.lang.String field, Shape... values)
void
IngestField. addValues(Shape... values)
void
IngestDocument. setField(java.lang.String field, Shape... values)
Set thevalues
for afield
.void
IngestFieldValue. setValue(Shape value)
Set aShape
value.Constructors in com.attivio.sdk.ingest with parameters of type Shape Constructor Description IngestFieldValue(Shape value)
Construct a new IngestFieldValue with aShape
value. -
Uses of Shape in com.attivio.sdk.search
Methods in com.attivio.sdk.search that return Shape Modifier and Type Method Description Shape
SearchFieldValue. shapeValue()
Gets the value as aShape
.Methods in com.attivio.sdk.search with parameters of type Shape Modifier and Type Method Description void
SearchDocument. addValue(java.lang.String field, Shape value)
Add aShape
value tofield
.void
SearchField. addValue(Shape value)
Add aShape
value to thisSearchField
.void
SearchDocument. addValues(java.lang.String field, Shape... values)
void
SearchField. addValues(Shape... values)
void
SearchFieldValue. setValue(Shape value)
Set aShape
value.Constructors in com.attivio.sdk.search with parameters of type Shape Constructor Description SearchFieldValue(Shape value)
Construct a new SearchFieldValue with aShape
value. -
Uses of Shape in com.attivio.sdk.search.query
Methods in com.attivio.sdk.search.query that return Shape Modifier and Type Method Description Shape
ShapeQuery. getShape()
Methods in com.attivio.sdk.search.query with parameters of type Shape Modifier and Type Method Description void
ShapeQuery. setShape(Shape value)
Constructors in com.attivio.sdk.search.query with parameters of type Shape Constructor Description ShapeQuery(java.lang.String field, Shape shape)
-
Uses of Shape in com.attivio.sdk.server.udf
Methods in com.attivio.sdk.server.udf that return Shape Modifier and Type Method Description Shape
InputValue. getShape(int index)
Get the value for this argument as a Shape.Methods in com.attivio.sdk.server.udf with parameters of type Shape Modifier and Type Method Description void
OutputValue. addShape(Shape value)
Add a Shape value to the output. -
Uses of Shape in com.attivio.util
Methods in com.attivio.util that return Shape Modifier and Type Method Description static Shape
GeometryUtils. toShape(java.lang.Object value)
Get a shape forvalue
(if possible).
-