Android Open Source - android-bossweather Condition Definition






From Project

Back to project page android-bossweather.

License

The source code is released under:

Apache License

If you think the Android project android-bossweather listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2011 The Android Open Source Project
 * Copyright (C) 2012 Zhenghong Wang//from  w ww. j av a2s  .  c  om
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.michael.feng.utils.YahooWeather4a;

public class ConditionDefinition {
  
  String[] conditionArray = new String[] {
      "tornado",
      "tropical storm",
      "hurricane",
      "severe thunderstorms",
      "thunderstorms",
      "mixed rain and snow",
      "mixed rain and sleet",
      "mixed snow and sleet",
      "freezing drizzle",
      "drizzle",
      "freezing rain",
      "showers",
      "showers",
      "snow flurries",
      "light snow showers",
      "blowing snow",
      "snow",
      "hail",
      "sleet",
      "dust",
      "foggy",
      "haze",
      "smoky",
      "blustery",
      "windy",
      "cold",
      "cloudy",
      "mostly cloudy (night)",
      "mostly cloudy (day)",
      "partly cloudy (night)",
      "partly cloudy (day)",
      "clear (night)",
      "sunny",
      "fair (night)",
      "fair (day)",
      "mixed rain and hail",
      "hot",
      "isolated thunderstorms",
      "scattered thunderstorms",
      "scattered thunderstorms",
      "scattered showers",
      "heavy snow",
      "scattered snow showers",
      "heavy snow",
      "partly cloudy",
      "thundershowers",
      "snow showers",
      "isolated thundershowers",
      "not available",
  };
  
  public String getConditionByCode(int code) {
    return conditionArray[code];
  }
}




Java Source Code List

com.michael.feng.bossweather.AddActivity.java
com.michael.feng.bossweather.EditActivity.java
com.michael.feng.bossweather.MainActivity.java
com.michael.feng.model.City.java
com.michael.feng.tools.CityDAO.java
com.michael.feng.tools.ConvertUtil.java
com.michael.feng.tools.ImageUtils.java
com.michael.feng.tools.MyCard.java
com.michael.feng.tools.MyImageCard.java
com.michael.feng.tools.SQLiteHelper.java
com.michael.feng.utils.YahooWeather4a.ConditionDefinition.java
com.michael.feng.utils.YahooWeather4a.WOEIDUtils.java
com.michael.feng.utils.YahooWeather4a.WeatherInfo.java
com.michael.feng.utils.YahooWeather4a.YahooWeatherInfoListener.java
com.michael.feng.utils.YahooWeather4a.YahooWeatherUtils.java