This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new 012f3a9fe General Javadoc improvements
012f3a9fe is described below
commit 012f3a9fe103c4f81ab68aadf520efc772701b4d
Author: Gary D. Gregory <[email protected]>
AuthorDate: Sun Jul 20 14:36:02 2025 -0400
General Javadoc improvements
---
src/changes/changes.xml | 1 +
.../org/apache/commons/lang3/SystemProperties.java | 390 ++++++++++-----------
2 files changed, 196 insertions(+), 195 deletions(-)
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b04932dcb..7e8f565cf 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -54,6 +54,7 @@ The <action> type attribute can be add,update,fix,remove.
<action type="fix" dev="ggregory" due-to="Gary
Gregory">org.apache.commons.lang3.reflect.MethodUtils.getMethodObject(Class<?>,
String, Class<?>...) now returns null instead of throwing a
NullPointerException, as it does for other exception types.</action>
<action type="fix" dev="ggregory" due-to="Scott
Parish">[javadoc] Strings::equalsAny: CI doc string should show it's
insensitive #1416.</action>
<action type="fix" dev="ggregory" due-to="Gary
Gregory">Reduce spurious failures in org.apache.commons.lang3.ArrayUtilsTest
methods that test ArrayUtils.shuffle() methods.</action>
+ <action type="fix" dev="ggregory" due-to="Gary
Gregory">General Javadoc improvements.</action>
<!-- ADD -->
<!-- UPDATE -->
</release>
diff --git a/src/main/java/org/apache/commons/lang3/SystemProperties.java
b/src/main/java/org/apache/commons/lang3/SystemProperties.java
index 240f35e50..dc9b12139 100644
--- a/src/main/java/org/apache/commons/lang3/SystemProperties.java
+++ b/src/main/java/org/apache/commons/lang3/SystemProperties.java
@@ -1532,7 +1532,7 @@ public final class SystemProperties {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getAppleAwtEnableTemplateImages() {
@@ -1545,7 +1545,7 @@ public static String getAppleAwtEnableTemplateImages() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getAwtToolkit() {
return getProperty(AWT_TOOLKIT);
@@ -1569,7 +1569,7 @@ public static boolean getBoolean(final String key, final
BooleanSupplier default
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getComSunJndiLdapObjectTrustSerialData() {
@@ -1582,7 +1582,7 @@ public static String
getComSunJndiLdapObjectTrustSerialData() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getComSunNetHttpServerHttpServerProvider() {
@@ -1598,7 +1598,7 @@ public static String
getComSunNetHttpServerHttpServerProvider() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getFileEncoding() {
return getProperty(FILE_ENCODING);
@@ -1610,7 +1610,7 @@ public static String getFileEncoding() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getFileSeparator() {
return getProperty(FILE_SEPARATOR);
@@ -1622,7 +1622,7 @@ public static String getFileSeparator() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getFtpNonProxyHost() {
@@ -1635,7 +1635,7 @@ public static String getFtpNonProxyHost() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getFtpProxyHost() {
@@ -1648,7 +1648,7 @@ public static String getFtpProxyHost() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getFtpProxyPort() {
@@ -1661,7 +1661,7 @@ public static String getFtpProxyPort() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpAgent() {
@@ -1674,7 +1674,7 @@ public static String getHttpAgent() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpAuthDigestCnonceRepeat() {
@@ -1687,7 +1687,7 @@ public static String getHttpAuthDigestCnonceRepeat() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpAuthDigestReenabledAlgorithms() {
@@ -1700,7 +1700,7 @@ public static String
getHttpAuthDigestReenabledAlgorithms() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpAuthDigestValidateProxy() {
@@ -1713,7 +1713,7 @@ public static String getHttpAuthDigestValidateProxy() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpAuthDigestValidateServer() {
@@ -1726,7 +1726,7 @@ public static String getHttpAuthDigestValidateServer() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpAuthNtlmDomain() {
@@ -1739,7 +1739,7 @@ public static String getHttpAuthNtlmDomain() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpKeepAlive() {
@@ -1752,7 +1752,7 @@ public static String getHttpKeepAlive() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpKeepAliveTimeProxy() {
@@ -1765,7 +1765,7 @@ public static String getHttpKeepAliveTimeProxy() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpKeepAliveTimeServer() {
@@ -1778,7 +1778,7 @@ public static String getHttpKeepAliveTimeServer() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpMaxConnections() {
@@ -1791,7 +1791,7 @@ public static String getHttpMaxConnections() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpMaxRedirects() {
@@ -1804,7 +1804,7 @@ public static String getHttpMaxRedirects() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpNonProxyHosts() {
@@ -1817,7 +1817,7 @@ public static String getHttpNonProxyHosts() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpProxyHost() {
@@ -1830,7 +1830,7 @@ public static String getHttpProxyHost() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpProxyPort() {
@@ -1843,7 +1843,7 @@ public static String getHttpProxyPort() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpsProxyHost() {
@@ -1856,7 +1856,7 @@ public static String getHttpsProxyHost() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getHttpsProxyPort() {
@@ -1881,7 +1881,7 @@ public static int getInt(final String key, final
IntSupplier defaultIfAbsent) {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaAwtFonts() {
return getProperty(JAVA_AWT_FONTS);
@@ -1893,7 +1893,7 @@ public static String getJavaAwtFonts() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaAwtGraphicsenv() {
return getProperty(JAVA_AWT_GRAPHICSENV);
@@ -1905,7 +1905,7 @@ public static String getJavaAwtGraphicsenv() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaAwtHeadless() {
return getProperty(JAVA_AWT_HEADLESS);
@@ -1917,7 +1917,7 @@ public static String getJavaAwtHeadless() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaAwtPrinterjob() {
return getProperty(JAVA_AWT_PRINTERJOB);
@@ -1929,7 +1929,7 @@ public static String getJavaAwtPrinterjob() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaClassPath() {
return getProperty(JAVA_CLASS_PATH);
@@ -1941,7 +1941,7 @@ public static String getJavaClassPath() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaClassVersion() {
return getProperty(JAVA_CLASS_VERSION);
@@ -1953,7 +1953,7 @@ public static String getJavaClassVersion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaCompiler() {
return getProperty(JAVA_COMPILER);
@@ -1965,7 +1965,7 @@ public static String getJavaCompiler() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaContentHandlerPkgs() {
@@ -1978,7 +1978,7 @@ public static String getJavaContentHandlerPkgs() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaEndorsedDirs() {
return getProperty(JAVA_ENDORSED_DIRS);
@@ -1990,7 +1990,7 @@ public static String getJavaEndorsedDirs() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaExtDirs() {
return getProperty(JAVA_EXT_DIRS);
@@ -2002,7 +2002,7 @@ public static String getJavaExtDirs() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaHome() {
return getProperty(JAVA_HOME);
@@ -2014,7 +2014,7 @@ public static String getJavaHome() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaIoTmpdir() {
return getProperty(JAVA_IO_TMPDIR);
@@ -2026,7 +2026,7 @@ public static String getJavaIoTmpdir() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaLibraryPath() {
return getProperty(JAVA_LIBRARY_PATH);
@@ -2041,7 +2041,7 @@ public static String getJavaLibraryPath() {
* Java 9 and above.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaLocaleProviders() {
return getProperty(JAVA_LOCALE_PROVIDERS);
@@ -2053,7 +2053,7 @@ public static String getJavaLocaleProviders() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaLocaleUseOldIsoCodes() {
@@ -2066,7 +2066,7 @@ public static String getJavaLocaleUseOldIsoCodes() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNetPreferIpv4Stack() {
@@ -2079,7 +2079,7 @@ public static String getJavaNetPreferIpv4Stack() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNetPreferIpv6Addresses() {
@@ -2092,7 +2092,7 @@ public static String getJavaNetPreferIpv6Addresses() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNetSocksPassword() {
@@ -2105,7 +2105,7 @@ public static String getJavaNetSocksPassword() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNetSocksUserName() {
@@ -2118,7 +2118,7 @@ public static String getJavaNetSocksUserName() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNetUseSystemProxies() {
@@ -2131,7 +2131,7 @@ public static String getJavaNetUseSystemProxies() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNioChannelsDefaultThreadPoolInitialSize() {
@@ -2144,7 +2144,7 @@ public static String
getJavaNioChannelsDefaultThreadPoolInitialSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNioChannelsDefaultThreadPoolThreadFactory() {
@@ -2157,7 +2157,7 @@ public static String
getJavaNioChannelsDefaultThreadPoolThreadFactory() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNioChannelsSpiAsynchronousChannelProvider() {
@@ -2170,7 +2170,7 @@ public static String
getJavaNioChannelsSpiAsynchronousChannelProvider() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNioChannelsSpiSelectorProvider() {
@@ -2183,7 +2183,7 @@ public static String
getJavaNioChannelsSpiSelectorProvider() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaNioFileSpiDefaultFileSystemProvider() {
@@ -2196,7 +2196,7 @@ public static String
getJavaNioFileSpiDefaultFileSystemProvider() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaPropertiesDate() {
@@ -2209,7 +2209,7 @@ public static String getJavaPropertiesDate() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaProtocolHandlerPkgs() {
@@ -2222,7 +2222,7 @@ public static String getJavaProtocolHandlerPkgs() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaRmiServerCodebase() {
@@ -2235,7 +2235,7 @@ public static String getJavaRmiServerCodebase() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaRmiServerHostName() {
@@ -2248,7 +2248,7 @@ public static String getJavaRmiServerHostName() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaRmiServerRandomIds() {
@@ -2261,7 +2261,7 @@ public static String getJavaRmiServerRandomIds() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaRmiServerRmiClassLoaderSpi() {
@@ -2274,7 +2274,7 @@ public static String getJavaRmiServerRmiClassLoaderSpi() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaRuntimeName() {
return getProperty(JAVA_RUNTIME_NAME);
@@ -2286,7 +2286,7 @@ public static String getJavaRuntimeName() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaRuntimeVersion() {
return getProperty(JAVA_RUNTIME_VERSION);
@@ -2298,7 +2298,7 @@ public static String getJavaRuntimeVersion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaSecurityAuthLoginConfig() {
@@ -2311,7 +2311,7 @@ public static String getJavaSecurityAuthLoginConfig() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaSecurityManager() {
@@ -2324,7 +2324,7 @@ public static String getJavaSecurityManager() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaSpecificationMaintenanceVersion() {
@@ -2337,7 +2337,7 @@ public static String
getJavaSpecificationMaintenanceVersion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaSpecificationName() {
return getProperty(JAVA_SPECIFICATION_NAME);
@@ -2349,7 +2349,7 @@ public static String getJavaSpecificationName() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaSpecificationVendor() {
return getProperty(JAVA_SPECIFICATION_VENDOR);
@@ -2361,7 +2361,7 @@ public static String getJavaSpecificationVendor() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaSpecificationVersion() {
return getProperty(JAVA_SPECIFICATION_VERSION);
@@ -2374,7 +2374,7 @@ public static String getJavaSpecificationVersion() {
* </p>
*
* @param defaultValue get this Supplier when the property is empty or
throws SecurityException.
- * @return the current value from the system properties map.
+ * @return The system property value or {@code defaultValue} if the
property is absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaSpecificationVersion(final String
defaultValue) {
@@ -2387,7 +2387,7 @@ public static String getJavaSpecificationVersion(final
String defaultValue) {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaSystemClassLoader() {
@@ -2400,7 +2400,7 @@ public static String getJavaSystemClassLoader() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaTimeZoneDefaultZoneRulesProvider() {
@@ -2413,7 +2413,7 @@ public static String
getJavaTimeZoneDefaultZoneRulesProvider() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String
getJavaUtilConcurrentForkJoinPoolCommonExceptionHandler() {
@@ -2426,7 +2426,7 @@ public static String
getJavaUtilConcurrentForkJoinPoolCommonExceptionHandler() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String
getJavaUtilConcurrentForkJoinPoolCommonMaximumSpares() {
@@ -2439,7 +2439,7 @@ public static String
getJavaUtilConcurrentForkJoinPoolCommonMaximumSpares() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaUtilConcurrentForkJoinPoolCommonParallelism() {
@@ -2452,7 +2452,7 @@ public static String
getJavaUtilConcurrentForkJoinPoolCommonParallelism() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String
getJavaUtilConcurrentForkJoinPoolCommonThreadFactory() {
@@ -2465,7 +2465,7 @@ public static String
getJavaUtilConcurrentForkJoinPoolCommonThreadFactory() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaUtilCurrencyData() {
@@ -2478,7 +2478,7 @@ public static String getJavaUtilCurrencyData() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaUtilLoggingConfigClass() {
@@ -2491,7 +2491,7 @@ public static String getJavaUtilLoggingConfigClass() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaUtilLoggingConfigFile() {
@@ -2504,7 +2504,7 @@ public static String getJavaUtilLoggingConfigFile() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaUtilLoggingSimpleFormatterFormat() {
@@ -2517,7 +2517,7 @@ public static String
getJavaUtilLoggingSimpleFormatterFormat() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaUtilPrefsPreferencesFactory() {
return getProperty(JAVA_UTIL_PREFS_PREFERENCES_FACTORY);
@@ -2529,7 +2529,7 @@ public static String getJavaUtilPrefsPreferencesFactory()
{
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaUtilPropertyResourceBundleEncoding() {
@@ -2542,7 +2542,7 @@ public static String
getJavaUtilPropertyResourceBundleEncoding() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVendor() {
return getProperty(JAVA_VENDOR);
@@ -2554,7 +2554,7 @@ public static String getJavaVendor() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVendorUrl() {
return getProperty(JAVA_VENDOR_URL);
@@ -2566,7 +2566,7 @@ public static String getJavaVendorUrl() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaVendorVersion() {
@@ -2579,7 +2579,7 @@ public static String getJavaVendorVersion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVersion() {
return getProperty(JAVA_VERSION);
@@ -2591,7 +2591,7 @@ public static String getJavaVersion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaVersionDate() {
@@ -2604,7 +2604,7 @@ public static String getJavaVersionDate() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVmInfo() {
return getProperty(JAVA_VM_INFO);
@@ -2616,7 +2616,7 @@ public static String getJavaVmInfo() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVmName() {
return getProperty(JAVA_VM_NAME);
@@ -2628,7 +2628,7 @@ public static String getJavaVmName() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVmSpecificationName() {
return getProperty(JAVA_VM_SPECIFICATION_NAME);
@@ -2640,7 +2640,7 @@ public static String getJavaVmSpecificationName() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVmSpecificationVendor() {
return getProperty(JAVA_VM_SPECIFICATION_VENDOR);
@@ -2652,7 +2652,7 @@ public static String getJavaVmSpecificationVendor() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVmSpecificationVersion() {
return getProperty(JAVA_VM_SPECIFICATION_VERSION);
@@ -2664,7 +2664,7 @@ public static String getJavaVmSpecificationVersion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVmVendor() {
return getProperty(JAVA_VM_VENDOR);
@@ -2676,7 +2676,7 @@ public static String getJavaVmVendor() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getJavaVmVersion() {
return getProperty(JAVA_VM_VERSION);
@@ -2688,7 +2688,7 @@ public static String getJavaVmVersion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaxAccessibilityAssistiveTechnologies() {
@@ -2701,7 +2701,7 @@ public static String
getJavaxAccessibilityAssistiveTechnologies() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaXmlConfigFile() {
@@ -2714,7 +2714,7 @@ public static String getJavaXmlConfigFile() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaxNetSslSessionCacheSize() {
@@ -2727,7 +2727,7 @@ public static String getJavaxNetSslSessionCacheSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaxRmiSslClientEnabledCipherSuites() {
@@ -2740,7 +2740,7 @@ public static String
getJavaxRmiSslClientEnabledCipherSuites() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaxRmiSslClientEnabledProtocols() {
@@ -2753,7 +2753,7 @@ public static String
getJavaxRmiSslClientEnabledProtocols() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaxSecurityAuthUseSubjectCredsOnly() {
@@ -2766,7 +2766,7 @@ public static String
getJavaxSecurityAuthUseSubjectCredsOnly() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJavaxSmartCardIoTerminalFactoryDefaultType() {
@@ -2779,7 +2779,7 @@ public static String
getJavaxSmartCardIoTerminalFactoryDefaultType() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdbcDrivers() {
@@ -2792,7 +2792,7 @@ public static String getJdbcDrivers() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpAuthProxyingDisabledSchemes() {
@@ -2805,7 +2805,7 @@ public static String
getJdkHttpAuthProxyingDisabledSchemes() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpAuthTunnelingDisabledSchemes() {
@@ -2818,7 +2818,7 @@ public static String
getJdkHttpAuthTunnelingDisabledSchemes() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientAllowRestrictedHeaders() {
@@ -2831,7 +2831,7 @@ public static String
getJdkHttpClientAllowRestrictedHeaders() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientAuthRetryLimit() {
@@ -2844,7 +2844,7 @@ public static String getJdkHttpClientAuthRetryLimit() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientBufSize() {
@@ -2857,7 +2857,7 @@ public static String getJdkHttpClientBufSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientConnectionPoolSize() {
@@ -2870,7 +2870,7 @@ public static String getJdkHttpClientConnectionPoolSize()
{
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientConnectionWindowSize() {
@@ -2883,7 +2883,7 @@ public static String
getJdkHttpClientConnectionWindowSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientDisableRetryConnect() {
@@ -2896,7 +2896,7 @@ public static String
getJdkHttpClientDisableRetryConnect() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientEnableAllMethodRetry() {
@@ -2909,7 +2909,7 @@ public static String
getJdkHttpClientEnableAllMethodRetry() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientEnablePush() {
@@ -2922,7 +2922,7 @@ public static String getJdkHttpClientEnablePush() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientHpackMaxHeaderTableSize() {
@@ -2935,7 +2935,7 @@ public static String
getJdkHttpClientHpackMaxHeaderTableSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientHttpClientLog() {
@@ -2948,7 +2948,7 @@ public static String getJdkHttpClientHttpClientLog() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientKeepAliveTimeout() {
@@ -2961,7 +2961,7 @@ public static String getJdkHttpClientKeepAliveTimeout() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientKeepAliveTimeoutH2() {
@@ -2974,7 +2974,7 @@ public static String getJdkHttpClientKeepAliveTimeoutH2()
{
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientMaxFrameSize() {
@@ -2987,7 +2987,7 @@ public static String getJdkHttpClientMaxFrameSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientMaxStreams() {
@@ -3000,7 +3000,7 @@ public static String getJdkHttpClientMaxStreams() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientReceiveBufferSize() {
@@ -3013,7 +3013,7 @@ public static String getJdkHttpClientReceiveBufferSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientRedirectsRetryLimit() {
@@ -3026,7 +3026,7 @@ public static String
getJdkHttpClientRedirectsRetryLimit() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientSendBufferSize() {
@@ -3039,7 +3039,7 @@ public static String getJdkHttpClientSendBufferSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientWebSocketWriteBufferSize() {
@@ -3052,7 +3052,7 @@ public static String
getJdkHttpClientWebSocketWriteBufferSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpClientWindowSize() {
@@ -3065,7 +3065,7 @@ public static String getJdkHttpClientWindowSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpServerMaxConnections() {
@@ -3078,7 +3078,7 @@ public static String getJdkHttpServerMaxConnections() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkHttpsNegotiateCbt() {
@@ -3091,7 +3091,7 @@ public static String getJdkHttpsNegotiateCbt() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkIncludeInExceptions() {
@@ -3104,7 +3104,7 @@ public static String getJdkIncludeInExceptions() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkInternalHttpClientDisableHostNameVerification()
{
@@ -3117,7 +3117,7 @@ public static String
getJdkInternalHttpClientDisableHostNameVerification() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkIoPermissionsUseCanonicalPath() {
@@ -3130,7 +3130,7 @@ public static String
getJdkIoPermissionsUseCanonicalPath() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkJndiLdapObjectFactoriesFilter() {
@@ -3143,7 +3143,7 @@ public static String
getJdkJndiLdapObjectFactoriesFilter() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkJndiObjectFactoriesFilter() {
@@ -3156,7 +3156,7 @@ public static String getJdkJndiObjectFactoriesFilter() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkJndiRmiObjectFactoriesFilter() {
@@ -3169,7 +3169,7 @@ public static String getJdkJndiRmiObjectFactoriesFilter()
{
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkModuleMain() {
@@ -3182,7 +3182,7 @@ public static String getJdkModuleMain() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkModuleMainClass() {
@@ -3195,7 +3195,7 @@ public static String getJdkModuleMainClass() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkModulePath() {
@@ -3208,7 +3208,7 @@ public static String getJdkModulePath() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkModuleUpgradePath() {
@@ -3221,7 +3221,7 @@ public static String getJdkModuleUpgradePath() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkNetUnixDomainTmpDir() {
@@ -3234,7 +3234,7 @@ public static String getJdkNetUnixDomainTmpDir() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkNetUrlClassPathShowIgnoredClassPathEntries() {
@@ -3247,7 +3247,7 @@ public static String
getJdkNetUrlClassPathShowIgnoredClassPathEntries() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkSerialFilter() {
@@ -3260,7 +3260,7 @@ public static String getJdkSerialFilter() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkSerialFilterFactory() {
@@ -3273,7 +3273,7 @@ public static String getJdkSerialFilterFactory() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkTlsClientSignatureSchemes() {
@@ -3286,7 +3286,7 @@ public static String getJdkTlsClientSignatureSchemes() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkTlsNamedGroups() {
@@ -3299,7 +3299,7 @@ public static String getJdkTlsNamedGroups() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkTlsServerSignatureSchemes() {
@@ -3312,7 +3312,7 @@ public static String getJdkTlsServerSignatureSchemes() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkVirtualThreadSchedulerMaxPoolSize() {
@@ -3325,7 +3325,7 @@ public static String
getJdkVirtualThreadSchedulerMaxPoolSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkVirtualThreadSchedulerParallelism() {
@@ -3338,7 +3338,7 @@ public static String
getJdkVirtualThreadSchedulerParallelism() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlCdataChunkSize() {
@@ -3351,7 +3351,7 @@ public static String getJdkXmlCdataChunkSize() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlDtdSupport() {
@@ -3364,7 +3364,7 @@ public static String getJdkXmlDtdSupport() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlElementAttributeLimit() {
@@ -3377,7 +3377,7 @@ public static String getJdkXmlElementAttributeLimit() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlEnableExtensionFunctions() {
@@ -3390,7 +3390,7 @@ public static String getJdkXmlEnableExtensionFunctions() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlEntityExpansionLimit() {
@@ -3403,7 +3403,7 @@ public static String getJdkXmlEntityExpansionLimit() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlEntityReplacementLimit() {
@@ -3416,7 +3416,7 @@ public static String getJdkXmlEntityReplacementLimit() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlIsStandalone() {
@@ -3429,7 +3429,7 @@ public static String getJdkXmlIsStandalone() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlJdkCatalogResolve() {
@@ -3442,7 +3442,7 @@ public static String getJdkXmlJdkCatalogResolve() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlMaxElementDepth() {
@@ -3455,7 +3455,7 @@ public static String getJdkXmlMaxElementDepth() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlMaxGeneralEntitySizeLimit() {
@@ -3468,7 +3468,7 @@ public static String getJdkXmlMaxGeneralEntitySizeLimit()
{
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlMaxOccurLimit() {
@@ -3481,7 +3481,7 @@ public static String getJdkXmlMaxOccurLimit() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlMaxParameterEntitySizeLimit() {
@@ -3494,7 +3494,7 @@ public static String
getJdkXmlMaxParameterEntitySizeLimit() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlMaxXmlNameLimit() {
@@ -3507,7 +3507,7 @@ public static String getJdkXmlMaxXmlNameLimit() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlOverrideDefaultParser() {
@@ -3520,7 +3520,7 @@ public static String getJdkXmlOverrideDefaultParser() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlResetSymbolTable() {
@@ -3533,7 +3533,7 @@ public static String getJdkXmlResetSymbolTable() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlTotalEntitySizeLimit() {
@@ -3546,7 +3546,7 @@ public static String getJdkXmlTotalEntitySizeLimit() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getJdkXmlXsltcIsStandalone() {
@@ -3559,7 +3559,7 @@ public static String getJdkXmlXsltcIsStandalone() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getLineSeparator() {
return getProperty(LINE_SEPARATOR);
@@ -3597,7 +3597,7 @@ public static long getLong(final String key, final
LongSupplier defaultIfAbsent)
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getNativeEncoding() {
@@ -3610,7 +3610,7 @@ public static String getNativeEncoding() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getNetworkAddressCacheNegativeTtl() {
@@ -3623,7 +3623,7 @@ public static String getNetworkAddressCacheNegativeTtl() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getNetworkAddressCacheStaleTtl() {
@@ -3636,7 +3636,7 @@ public static String getNetworkAddressCacheStaleTtl() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getNetworkAddressCacheTtl() {
@@ -3649,7 +3649,7 @@ public static String getNetworkAddressCacheTtl() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getOrgJcpXmlDsigSecureValidation() {
@@ -3662,7 +3662,7 @@ public static String getOrgJcpXmlDsigSecureValidation() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getOrgOpenJdkJavaUtilStreamTripwire() {
@@ -3675,7 +3675,7 @@ public static String
getOrgOpenJdkJavaUtilStreamTripwire() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getOsArch() {
return getProperty(OS_ARCH);
@@ -3687,7 +3687,7 @@ public static String getOsArch() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getOsName() {
return getProperty(OS_NAME);
@@ -3699,7 +3699,7 @@ public static String getOsName() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getOsVersion() {
return getProperty(OS_VERSION);
@@ -3711,7 +3711,7 @@ public static String getOsVersion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getPathSeparator() {
return getProperty(PATH_SEPARATOR);
@@ -3723,8 +3723,8 @@ public static String getPathSeparator() {
* If a {@link SecurityException} is caught, the return value is {@code
null}.
* </p>
*
- * @param property the system property name
- * @return the system property value or {@code null} if a security problem
occurs
+ * @param property The system property name.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getProperty(final String property) {
return getProperty(property, Suppliers.nul());
@@ -3738,7 +3738,7 @@ public static String getProperty(final String property) {
*
* @param property the system property name.
* @param defaultIfAbsent use this value when the property is empty or
throws SecurityException.
- * @return the system property value or {@code null} if a security problem
occurs
+ * @return the system property value or {@code null} if a security problem
occurs.
*/
static String getProperty(final String property, final String
defaultIfAbsent) {
return getProperty(property, () -> defaultIfAbsent);
@@ -3752,7 +3752,7 @@ static String getProperty(final String property, final
String defaultIfAbsent) {
*
* @param property the system property name.
* @param defaultIfAbsent get this Supplier when the property is empty or
throws SecurityException.
- * @return the system property value or {@code null} if a security problem
occurs
+ * @return the system property value or {@code null} if a security problem
occurs.
*/
static String getProperty(final String property, final Supplier<String>
defaultIfAbsent) {
try {
@@ -3775,7 +3775,7 @@ static String getProperty(final String property, final
Supplier<String> defaultI
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSocksProxyHost() {
@@ -3788,7 +3788,7 @@ public static String getSocksProxyHost() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSocksProxyPort() {
@@ -3801,7 +3801,7 @@ public static String getSocksProxyPort() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSocksProxyVersion() {
@@ -3814,7 +3814,7 @@ public static String getSocksProxyVersion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getStdErrEncoding() {
@@ -3827,7 +3827,7 @@ public static String getStdErrEncoding() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getStdOutEncoding() {
@@ -3840,7 +3840,7 @@ public static String getStdOutEncoding() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSunNetHttpServerDrainAmount() {
@@ -3853,7 +3853,7 @@ public static String getSunNetHttpServerDrainAmount() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSunNetHttpServerIdleInterval() {
@@ -3866,7 +3866,7 @@ public static String getSunNetHttpServerIdleInterval() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSunNetHttpServerMaxIdleConnections() {
@@ -3879,7 +3879,7 @@ public static String
getSunNetHttpServerMaxIdleConnections() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSunNetHttpServerMaxReqHeaders() {
@@ -3892,7 +3892,7 @@ public static String getSunNetHttpServerMaxReqHeaders() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSunNetHttpServerMaxReqTime() {
@@ -3905,7 +3905,7 @@ public static String getSunNetHttpServerMaxReqTime() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSunNetHttpServerMaxRspTime() {
@@ -3918,7 +3918,7 @@ public static String getSunNetHttpServerMaxRspTime() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSunNetHttpServerNoDelay() {
@@ -3931,7 +3931,7 @@ public static String getSunNetHttpServerNoDelay() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getSunSecurityKrb5Principal() {
@@ -3944,7 +3944,7 @@ public static String getSunSecurityKrb5Principal() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getUserCountry() {
return getProperty(USER_COUNTRY);
@@ -3956,7 +3956,7 @@ public static String getUserCountry() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getUserDir() {
return getProperty(USER_DIR);
@@ -3968,7 +3968,7 @@ public static String getUserDir() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getUserExtensions() {
@@ -3981,7 +3981,7 @@ public static String getUserExtensions() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getUserHome() {
return getProperty(USER_HOME);
@@ -3993,7 +3993,7 @@ public static String getUserHome() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getUserLanguage() {
return getProperty(USER_LANGUAGE);
@@ -4005,7 +4005,7 @@ public static String getUserLanguage() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getUserName() {
return getProperty(USER_NAME);
@@ -4018,7 +4018,7 @@ public static String getUserName() {
* </p>
*
* @param defaultValue get this Supplier when the property is empty or
throws SecurityException.
- * @return the current value from the system properties map.
+ * @return The system property value or {@code defaultValue} if the
property is absent or a security problem occurs.
* @since 3.15.0
*/
public static String getUserName(final String defaultValue) {
@@ -4031,7 +4031,7 @@ public static String getUserName(final String
defaultValue) {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getUserRegion() {
@@ -4044,7 +4044,7 @@ public static String getUserRegion() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getUserScript() {
@@ -4057,7 +4057,7 @@ public static String getUserScript() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
*/
public static String getUserTimezone() {
return getProperty(USER_TIMEZONE);
@@ -4069,7 +4069,7 @@ public static String getUserTimezone() {
* Returns {@code null} if the property cannot be read due to a {@link
SecurityException}.
* </p>
*
- * @return the current value from the system properties map.
+ * @return The system property value or {@code null} if the property is
absent or a security problem occurs.
* @since 3.15.0
*/
public static String getUserVariant() {