Java Map Create createMap()

Here you can find the source of createMap()

Description

create Map

License

Open Source License

Declaration

private static Map<String, String[]> createMap() 

Method Source Code

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

import java.util.Collections;
import java.util.HashMap;

import java.util.Map;

public class Main {
    private static Map<String, String[]> createMap() {
        Map<String, String[]> result = new HashMap<String, String[]>();

        result.put("echoResponse", new String[] {});
        return Collections.unmodifiableMap(result);
    }/*from   www. j  a  v  a2  s  .c o m*/
}

Related

  1. buildMap(List a, Map coeffs)
  2. buildMap(Object key, Object value)
  3. buildMap(Object... data)
  4. buildMap(String... keysAndValues)
  5. buildMap(String... keyValuePairs)
  6. createMap()
  7. createMap()
  8. createMap()
  9. createMap(boolean full)