Package org.geotools.api.temporal
Interface TemporalNode
-
- All Superinterfaces:
TemporalTopologicalPrimitive
public interface TemporalNode extends TemporalTopologicalPrimitive
A zero dimensional topological primitive in time.- Author:
- Alexander Petkov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TemporalEdge
getNextEdge()
Links this temporal node to the next temporal edge.TemporalEdge
getPreviousEdge()
Links this temporal node to the previous temporal edge.Instant
getRealization()
An optional association that may link this temporal node to its corresponding instant.
-
-
-
Method Detail
-
getRealization
Instant getRealization()
An optional association that may link this temporal node to its corresponding instant.
-
getPreviousEdge
TemporalEdge getPreviousEdge()
Links this temporal node to the previous temporal edge.
-
getNextEdge
TemporalEdge getNextEdge()
Links this temporal node to the next temporal edge.
-
-