Package com.mchange.v2.lang
Class SystemUtils
java.lang.Object
com.mchange.v2.lang.SystemUtils
java.lang.System related utils. At present, just some utilities for replacing
parts of Strings with System properties or environment variables
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
envReplace
(String source) Use $${....} as escapes for ${....}static String
mapReplace
(String source, Map<String, String> replacements) Use $${....} as escapes for ${....}static String
sysPropsEnvReplace
(String source) Use $${....} as escapes for ${....}static String
sysPropsReplace
(String source) Use $${....} as escapes for ${....}
-
Method Details
-
mapReplace
Use $${....} as escapes for ${....} -
sysPropsReplace
Use $${....} as escapes for ${....} -
envReplace
Use $${....} as escapes for ${....} -
sysPropsEnvReplace
Use $${....} as escapes for ${....}
-