Package org.n52.shetland.ogc.om
Class PointValuePair
- java.lang.Object
-
- org.n52.shetland.ogc.om.PointValuePair
-
- All Implemented Interfaces:
Comparable<PointValuePair>
public class PointValuePair extends Object implements Comparable<PointValuePair>
-
-
Constructor Summary
Constructors Constructor Description PointValuePair(org.locationtech.jts.geom.Point point, Value<?> value)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(PointValuePair o)booleanequals(Object obj)org.locationtech.jts.geom.PointgetPoint()Get point value pair pointValue<?>getValue()Get point value pair valueinthashCode()booleanisEmpty()booleanisSetPoint()booleanisSetValue()voidsetPoint(org.locationtech.jts.geom.Point point)Set point value pair pointvoidsetValue(Value<?> value)Set point value pair value
-
-
-
Constructor Detail
-
PointValuePair
public PointValuePair(org.locationtech.jts.geom.Point point, Value<?> value)Constructor- Parameters:
point- Point value pair pointvalue- Point value pair value
-
-
Method Detail
-
getPoint
public org.locationtech.jts.geom.Point getPoint()
Get point value pair point- Returns:
- Point value pair point
-
getValue
public Value<?> getValue()
Get point value pair value- Returns:
- Point value pair value
-
setPoint
public void setPoint(org.locationtech.jts.geom.Point point)
Set point value pair point- Parameters:
point- Point value pair point to set
-
setValue
public void setValue(Value<?> value)
Set point value pair value- Parameters:
value- Point value pair value to set
-
isSetValue
public boolean isSetValue()
-
isSetPoint
public boolean isSetPoint()
-
isEmpty
public boolean isEmpty()
-
compareTo
public int compareTo(PointValuePair o)
- Specified by:
compareToin interfaceComparable<PointValuePair>
-
-