Java Map Create createMap_pollutantHourly()

Here you can find the source of createMap_pollutantHourly()

Description

create Mapollutant Hourly

License

Open Source License

Declaration

private static HashMap<String, String> createMap_pollutantHourly() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.util.HashMap;

public class Main {
    private static HashMap<String, String> createMap_pollutantHourly() {
        HashMap<String, String> map = new HashMap<String, String>();
        map.put("so2", "SulphurDioxide");
        map.put("pm10", "PM10");
        map.put("co", "CarbonMonoxide");
        map.put("no2", "NitrogenDioxide");
        map.put("o3", "Ozone");
        return map;
    }//  w w  w. j  a v a2  s  .  c o  m
}

Related

  1. createMap(String key, Object value)
  2. createMap(String[] list1, String[] list2)
  3. createMap(String[] mappings, String sep)
  4. createMap(T... _args)
  5. createMap(U... items)
  6. createMapFor(String... args)
  7. createMapFromArgs(Object... args)
  8. createMapFromProperties(Properties stringSubstitutionVariables)
  9. createMapFromWebsiteList(String[] websiteList)