Package org.n52.shetland.ogc.swe
Class SweCoordinate<T extends Number>
- java.lang.Object
-
- org.n52.shetland.ogc.swe.SweCoordinate<T>
-
- Type Parameters:
T- Value type
- All Implemented Interfaces:
Copyable<SweCoordinate<T>>
public class SweCoordinate<T extends Number> extends Object implements Copyable<SweCoordinate<T>>
SOS internal representation of SWE coordinates- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description SweCoordinate(String name, SweAbstractSimpleType<T> value)constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SweCoordinate<T>copy()StringgetName()SweAbstractSimpleType<T>getValue()voidsetName(String name)voidsetValue(SweAbstractSimpleType<T> value)StringtoString()
-
-
-
Constructor Detail
-
SweCoordinate
public SweCoordinate(String name, SweAbstractSimpleType<T> value)
constructor- Parameters:
name- Coordinate namevalue- Coordinate value
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getValue
public SweAbstractSimpleType<T> getValue()
- Returns:
- the value
-
setValue
public void setValue(SweAbstractSimpleType<T> value)
- Parameters:
value- the value to set
-
-