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
-
Method Summary
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 orderMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
toSortedString
like Properties.store, but stores the properties in sorted order
- Parameters:
properties- the properties object- Returns:
- String the properties, nicely formatted
-
toLine
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
Encodes a property file string from a supplied key/value line.- Parameters:
string- the string to encodeencodeWhiteSpace-trueif whitespace should be encoded also- Returns:
- the converted string
-