All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.core.convert.PropertiesBuilder Maven / Gradle / Ivy

package org.snapscript.core.convert;

import java.util.Map;
import java.util.Properties;

public class PropertiesBuilder {

   public static Properties create(Map map) {
      Properties properties = new Properties();
      
      if(!map.isEmpty()) {
         properties.putAll(map);
      }
      return properties;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy