Uses of Class
cz.krystofcejchan.lite_weather_lib.enums_exception.enums.DAY
| 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 DAY in cz.krystofcejchan.lite_weather_lib.enums_exception.enums
Methods in cz.krystofcejchan.lite_weather_lib.enums_exception.enums that return DAY Modifier and Type Method Description static DAYDAY. valueOf(String name)Returns the enum constant of this type with the specified name.static DAY[]DAY. 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 DAY Modifier and Type Method Description static List<DAY>DAY. getAllDaysExcept(DAY day)returns allDAYvalues expect the one included in paramMethods in cz.krystofcejchan.lite_weather_lib.enums_exception.enums with parameters of type DAY Modifier and Type Method Description static List<DAY>DAY. getAllDaysExcept(DAY day)returns allDAYvalues expect the one included in paramstatic intDAY. getIndex(DAY day)case TODAY -> 0; case TOMORROW -> 1; case AFTER_TOMORROW -> 2; case ALL -> -1; -
Uses of DAY in cz.krystofcejchan.lite_weather_lib.weather_objects
Methods in cz.krystofcejchan.lite_weather_lib.weather_objects that return DAY Modifier and Type Method Description DAY[]WeatherObject. getDays()Constructors in cz.krystofcejchan.lite_weather_lib.weather_objects with parameters of type DAY 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 DAY in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast
Methods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast that return DAY Modifier and Type Method Description DAY[]WeatherForecast. getDays()Methods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast that return types with arguments of type DAY 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 DAY 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 DAY 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 DAY in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days
-
Uses of DAY 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 DAY Modifier and Type Method Description DAYForecastAtHour. getDay()DAYIForecastDayTimesAndDays. getDay()Methods in cz.krystofcejchan.lite_weather_lib.weather_objects.subparts.forecast.days.hour with parameters of type DAY Modifier and Type Method Description static 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 DAY Constructor Description ForecastAtHour(org.json.JSONObject startOfJsonObject, DAY day, TIME time)