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 SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringsaveConvert(java.lang.String string, boolean encodeWhiteSpace)Encodes a property file string from a supplied key/value line.static java.lang.StringtoLine(java.lang.String key, java.lang.String value)Generates a property file line from a supplied key and value.static java.lang.StringtoSortedString(java.util.Properties properties)like Properties.store, but stores the properties in sorted order
 
- 
- 
- 
Method Detail- 
toSortedStringpublic 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
 
 - 
toLinepublic 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 key
- value- the property's value
- Returns:
- the converted string
 
 - 
saveConvertpublic 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 encode
- encodeWhiteSpace-- trueif whitespace should be encoded also
- Returns:
- the converted string
 
 
- 
 
-