Package org.apache.wiki.util
Class PropertiesUtils
- java.lang.Object
-
- org.apache.wiki.util.PropertiesUtils
-
public final class PropertiesUtils extends java.lang.Object
some useful methods for properties- Version:
- 1.0
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
saveConvert(java.lang.String string, boolean encodeWhiteSpace)
Encodes a property file string from a supplied key/value line.static java.lang.String
toLine(java.lang.String key, java.lang.String value)
Generates a property file line from a supplied key and value.static java.lang.String
toSortedString(java.util.Properties properties)
like Properties.store, but stores the properties in sorted order
-
-
-
Method Detail
-
toSortedString
public static java.lang.String toSortedString(java.util.Properties properties)
like Properties.store, but stores the properties in sorted order
- Parameters:
properties
- the properties object- Returns:
- String the properties, nicely formatted
-
toLine
public static java.lang.String toLine(java.lang.String key, java.lang.String value)
Generates a property file line from a supplied key and value.- Parameters:
key
- the property's keyvalue
- the property's value- Returns:
- the converted string
-
saveConvert
public static java.lang.String saveConvert(java.lang.String string, boolean encodeWhiteSpace)
Encodes a property file string from a supplied key/value line.- Parameters:
string
- the string to encodeencodeWhiteSpace
-true
if whitespace should be encoded also- Returns:
- the converted string
-
-