jodd.props
Class PropsUtil

java.lang.Object
  extended by jodd.props.PropsUtil

public class PropsUtil
extends java.lang.Object

Some Props utilities.


Constructor Summary
PropsUtil()
           
 
Method Summary
static void convert(java.io.Writer writer, java.util.Properties properties)
          Convert Java Properties to Jodd Props format
static void convert(java.io.Writer writer, java.util.Properties properties, java.util.Map<java.lang.String,java.util.Properties> profiles)
          Convert Java Properties to Jodd Props format
static Props createFromClasspath(java.lang.String... patterns)
          Creates new props and loads from classpath.
static void loadFromClasspath(Props p, java.lang.String... patterns)
          Loads props from classpath.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PropsUtil

public PropsUtil()
Method Detail

loadFromClasspath

public static void loadFromClasspath(Props p,
                                     java.lang.String... patterns)
Loads props from classpath.


createFromClasspath

public static Props createFromClasspath(java.lang.String... patterns)
Creates new props and loads from classpath.


convert

public static void convert(java.io.Writer writer,
                           java.util.Properties properties)
                    throws java.io.IOException
Convert Java Properties to Jodd Props format

Parameters:
writer - Writer to write Props formatted file content to
properties - Properties to convert to Props format
Throws:
java.io.IOException - On any I/O error when writing to the writer

convert

public static void convert(java.io.Writer writer,
                           java.util.Properties properties,
                           java.util.Map<java.lang.String,java.util.Properties> profiles)
                    throws java.io.IOException
Convert Java Properties to Jodd Props format

Parameters:
writer - Writer to write Props formatted file content to
properties - Properties to convert to Props format
profiles - Properties per profile to convert and add to the Props format
Throws:
java.io.IOException - On any I/O error when writing to the writer


Copyright © 2003-2013 Jodd Team