Java Properties toProperties(Map parse)

Here you can find the source of toProperties(Map parse)

Description

to Properties

License

Open Source License

Declaration

public static Properties toProperties(Map<String, String> parse) 

Method Source Code


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

import java.util.*;

public class Main {
    public static Properties toProperties(Map<String, String> parse) {

        Properties properties = new Properties();
        properties.putAll(parse);/*from w  w w  .ja  va  2  s  .  c o m*/

        return properties;
    }
}

Related

  1. removeDots(Properties props)
  2. search(List properties, String term)
  3. setProperty(Properties props, String keyword, Object value)
  4. stringPropertyNames(Properties props, String prefix)
  5. stringToProperties(String str)
  6. transformPropertiesToParams(Map properties)