Uses of Class
cz.krystofcejchan.lite_weather_lib.enums_exception.enums.TIME
| Package | Description |
|---|---|
| cz.krystofcejchan.lite_weather_lib.enums_exception.enums |
Enums
|
| cz.krystofcejchan.lite_weather_lib.weather_objects |
All weather objects
|
| cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast |
Forecast data
|
| cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days |
Forecast for each day
|
| cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days.hour |
Forecast for each hour
|
-
Uses of TIME in cz.krystofcejchan.lite_weather_lib.enums_exception.enums
Methods in cz.krystofcejchan.lite_weather_lib.enums_exception.enums that return TIME Modifier and Type Method Description static TIMETIME. valueOf(String name)Returns the enum constant of this type with the specified name.static TIME[]TIME. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in cz.krystofcejchan.lite_weather_lib.enums_exception.enums that return types with arguments of type TIME Modifier and Type Method Description static List<TIME>TIME. getAllEnumsExcept(TIME time)returns allTIMEvalues expect the one included in paramMethods in cz.krystofcejchan.lite_weather_lib.enums_exception.enums with parameters of type TIME Modifier and Type Method Description static List<TIME>TIME. getAllEnumsExcept(TIME time)returns allTIMEvalues expect the one included in paramstatic intTIME. getIndex(TIME time)case PM_12 -> 0; case AM_3 -> 1; case AM_6 -> 2; case AM_9 -> 3; case AM_12 -> 4; case PM_3 -> 5; case PM_6 -> 6; case PM_9 -> 7; case ALL -> -1; -
Uses of TIME in cz.krystofcejchan.lite_weather_lib.weather_objects
Methods in cz.krystofcejchan.lite_weather_lib.weather_objects that return TIME Modifier and Type Method Description TIME[]WeatherObject. getTimes()Constructors in cz.krystofcejchan.lite_weather_lib.weather_objects with parameters of type TIME Constructor Description WeatherObject(String location, DAY[] day, TIME... times)WeatherObject(String location, DAY day, TIME... times)WeatherObject(String location, TIME[] times, DAY... days)WeatherObject(String location, TIME time, DAY... days) -
Uses of TIME in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast
Methods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast that return TIME Modifier and Type Method Description TIME[]WeatherForecast. getTimes()Methods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast that return types with arguments of type TIME Modifier and Type Method Description Map<DAY,Map<TIME,ForecastAtHour>>WeatherForecast. getAllForecastForAllDayAndAllTime()get all possible forecasts for all days and times you provided in the constructorMethods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast with parameters of type TIME Modifier and Type Method Description ForecastAtHourWeatherForecast. getForecastFor(DAY day, TIME time)returns forecast for specific day and timeConstructors in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast with parameters of type TIME Constructor Description WeatherForecast(String location, DAY[] day, TIME... times)WeatherForecast(String location, DAY day, TIME... times)WeatherForecast(String location, TIME[] times, DAY... days)WeatherForecast(String location, TIME time, DAY... days) -
Uses of TIME in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days
Methods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days that return TIME Modifier and Type Method Description TIME[]AfterTomorrow. getTime()TIME[]Today. getTime()TIME[]Tomorrow. getTime()TIME[]AfterTomorrow. getTimes()TIME[]Today. getTimes()TIME[]Tomorrow. getTimes()Methods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days that return types with arguments of type TIME Modifier and Type Method Description Map<TIME,ForecastAtHour>AfterTomorrow. getAllForecastsForToday()get all possible forecast forTIMEs provided in constructorMap<TIME,ForecastAtHour>Today. getAllForecastsForToday()get all possible forecast forTIMEs provided in constructorMap<TIME,ForecastAtHour>Tomorrow. getAllForecastsForToday()get all possible forecast forTIMEs provided in constructorMethods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days with parameters of type TIME Modifier and Type Method Description ForecastAtHourAfterTomorrow. getForecastByTime(TIME time)ForecastAtHourToday. getForecastByTime(TIME time)ForecastAtHourTomorrow. getForecastByTime(TIME time) -
Uses of TIME in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days.hour
Methods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days.hour that return TIME Modifier and Type Method Description TIMEForecastAtHour. getTime()TIME[]IForecastDayTimesAndDays. getTime()Methods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days.hour with parameters of type TIME Modifier and Type Method Description ForecastAtHourIForecastDayTimesAndDays. getForecastByTime(TIME time)implemented by Today, Tomorrow and AfterTomorrow, therefor no day is neededstatic ForecastAtHourIForecastDayTimesAndDays. getMatchingObjectFrom(DAY day, TIME time)returns forecast for specific day and hourConstructors in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days.hour with parameters of type TIME Constructor Description ForecastAtHour(org.json.JSONObject startOfJsonObject, DAY day, TIME time)