Package org.opensky.model
Class OpenSkyStates
- java.lang.Object
-
- org.opensky.model.OpenSkyStates
-
public class OpenSkyStates extends Object
Represents states of vehicles at a given time.- Author:
- Markus Fuchs, fuchs@opensky-network.org
-
-
Constructor Summary
Constructors Constructor Description OpenSkyStates()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<StateVector>
getStates()
int
getTime()
void
setStates(Collection<StateVector> states)
void
setTime(int time)
-
-
-
Method Detail
-
getTime
public int getTime()
- Returns:
- The point in time for which states are stored
-
setTime
public void setTime(int time)
-
getStates
public Collection<StateVector> getStates()
- Returns:
- Actual states for this point in time
-
setStates
public void setStates(Collection<StateVector> states)
-
-