Created
January 31, 2017 16:35
-
-
Save entzik/919b7775c9a28945a9a6188c220fdc86 to your computer and use it in GitHub Desktop.
EnvObservation.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface EnvObservation { | |
public long getTimestamp(); | |
public void setTimeStamp(long timeStamp); | |
public double getTemperature(); | |
public void setTemperature(double temperature); | |
public double getHumidity(); | |
public void setHumidity(double humidity); | |
public double getWindSpeed(); | |
public void setWindSpeed(double windSpeed); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment