SystemUtils.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3;

  18. import java.io.File;

  19. /**
  20.  * Helpers for {@link System}.
  21.  *
  22.  * <p>
  23.  * If a system property cannot be read due to security restrictions, the corresponding field in this class will be set
  24.  * to {@code null} and a message will be written to {@code System.err}.
  25.  * </p>
  26.  * <p>
  27.  * #ThreadSafe#
  28.  * </p>
  29.  *
  30.  * @since 1.0
  31.  * @see SystemProperties
  32.  */
  33. public class SystemUtils {

  34.     /**
  35.      * The prefix String for all Windows OS.
  36.      */
  37.     private static final String OS_NAME_WINDOWS_PREFIX = "Windows";

  38.     // System property constants
  39.     // -----------------------------------------------------------------------
  40.     // These MUST be declared first. Other constants depend on this.

  41.     /**
  42.      * The {@code file.encoding} System Property.
  43.      *
  44.      * <p>
  45.      * File encoding, such as {@code Cp1252}.
  46.      * </p>
  47.      * <p>
  48.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  49.      * not exist.
  50.      * </p>
  51.      * <p>
  52.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  53.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  54.      * sync with that System property.
  55.      * </p>
  56.      *
  57.      * @see SystemProperties#getFileEncoding()
  58.      * @since 2.0
  59.      * @since Java 1.2
  60.      */
  61.     public static final String FILE_ENCODING = SystemProperties.getFileEncoding();

  62.     /**
  63.      * The {@code file.separator} System Property.
  64.      * The file separator is:
  65.      *
  66.      * <ul>
  67.      * <li>{@code "/"} on UNIX</li>
  68.      * <li>{@code "\"} on Windows.</li>
  69.      * </ul>
  70.      *
  71.      * <p>
  72.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  73.      * not exist.
  74.      * </p>
  75.      * <p>
  76.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  77.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  78.      * sync with that System property.
  79.      * </p>
  80.      *
  81.      * @see SystemProperties#getFileSeparator()
  82.      * @deprecated Use {@link File#separator}, since it is guaranteed to be a
  83.      *             string containing a single character and it does not require a privilege check.
  84.      * @since Java 1.1
  85.      */
  86.     @Deprecated
  87.     public static final String FILE_SEPARATOR = SystemProperties.getFileSeparator();

  88.     /**
  89.      * The {@code java.awt.fonts} System Property.
  90.      *
  91.      * <p>
  92.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  93.      * not exist.
  94.      * </p>
  95.      * <p>
  96.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  97.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  98.      * sync with that System property.
  99.      * </p>
  100.      *
  101.      * @see SystemProperties#getJavaAwtFonts()
  102.      * @since 2.1
  103.      */
  104.     public static final String JAVA_AWT_FONTS = SystemProperties.getJavaAwtFonts();

  105.     /**
  106.      * The {@code java.awt.graphicsenv} System Property.
  107.      *
  108.      * <p>
  109.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  110.      * not exist.
  111.      * </p>
  112.      * <p>
  113.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  114.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  115.      * sync with that System property.
  116.      * </p>
  117.      *
  118.      * @see SystemProperties#getJavaAwtGraphicsenv()
  119.      * @since 2.1
  120.      */
  121.     public static final String JAVA_AWT_GRAPHICSENV = SystemProperties.getJavaAwtGraphicsenv();

  122.     /**
  123.      * The {@code java.awt.headless} System Property. The value of this property is the String {@code "true"} or
  124.      * {@code "false"}.
  125.      *
  126.      * <p>
  127.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  128.      * not exist.
  129.      * </p>
  130.      * <p>
  131.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  132.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  133.      * sync with that System property.
  134.      * </p>
  135.      *
  136.      * @see #isJavaAwtHeadless()
  137.      * @see SystemProperties#getJavaAwtHeadless()
  138.      * @since 2.1
  139.      * @since Java 1.4
  140.      */
  141.     public static final String JAVA_AWT_HEADLESS = SystemProperties.getJavaAwtHeadless();

  142.     /**
  143.      * The {@code java.awt.printerjob} System Property.
  144.      *
  145.      * <p>
  146.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  147.      * not exist.
  148.      * </p>
  149.      * <p>
  150.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  151.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  152.      * sync with that System property.
  153.      * </p>
  154.      *
  155.      * @see SystemProperties#getJavaAwtPrinterjob()
  156.      * @since 2.1
  157.      */
  158.     public static final String JAVA_AWT_PRINTERJOB = SystemProperties.getJavaAwtPrinterjob();

  159.     /**
  160.      * The {@code java.class.path} System Property. Java class path.
  161.      *
  162.      * <p>
  163.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  164.      * not exist.
  165.      * </p>
  166.      * <p>
  167.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  168.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  169.      * sync with that System property.
  170.      * </p>
  171.      *
  172.      * @see SystemProperties#getJavaClassPath()
  173.      * @since Java 1.1
  174.      */
  175.     public static final String JAVA_CLASS_PATH = SystemProperties.getJavaClassPath();

  176.     /**
  177.      * The {@code java.class.version} System Property. Java class format version number.
  178.      *
  179.      * <p>
  180.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  181.      * not exist.
  182.      * </p>
  183.      * <p>
  184.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  185.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  186.      * sync with that System property.
  187.      * </p>
  188.      *
  189.      * @see SystemProperties#getJavaClassVersion()
  190.      * @since Java 1.1
  191.      */
  192.     public static final String JAVA_CLASS_VERSION = SystemProperties.getJavaClassVersion();

  193.     /**
  194.      * The {@code java.compiler} System Property. Name of JIT compiler to use. First in JDK version 1.2. Not used in Sun
  195.      * JDKs after 1.2.
  196.      *
  197.      * <p>
  198.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  199.      * not exist.
  200.      * </p>
  201.      * <p>
  202.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  203.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  204.      * sync with that System property.
  205.      * </p>
  206.      *
  207.      * @see SystemProperties#getJavaCompiler()
  208.      * @since Java 1.2. Not used in Sun versions after 1.2.
  209.      */
  210.     public static final String JAVA_COMPILER = SystemProperties.getJavaCompiler();

  211.     /**
  212.      * The {@code java.endorsed.dirs} System Property. Path of endorsed directory or directories.
  213.      *
  214.      * <p>
  215.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  216.      * not exist.
  217.      * </p>
  218.      * <p>
  219.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  220.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  221.      * sync with that System property.
  222.      * </p>
  223.      *
  224.      * @see SystemProperties#getJavaEndorsedDirs()
  225.      * @since Java 1.4
  226.      */
  227.     public static final String JAVA_ENDORSED_DIRS = SystemProperties.getJavaEndorsedDirs();

  228.     /**
  229.      * The {@code java.ext.dirs} System Property. Path of extension directory or directories.
  230.      *
  231.      * <p>
  232.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  233.      * not exist.
  234.      * </p>
  235.      * <p>
  236.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  237.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  238.      * sync with that System property.
  239.      * </p>
  240.      *
  241.      * @see SystemProperties#getJavaExtDirs()
  242.      * @since Java 1.3
  243.      */
  244.     public static final String JAVA_EXT_DIRS = SystemProperties.getJavaExtDirs();

  245.     /**
  246.      * The {@code java.home} System Property. Java installation directory.
  247.      *
  248.      * <p>
  249.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  250.      * not exist.
  251.      * </p>
  252.      * <p>
  253.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  254.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  255.      * sync with that System property.
  256.      * </p>
  257.      *
  258.      * @see SystemProperties#getJavaHome()
  259.      * @since Java 1.1
  260.      */
  261.     public static final String JAVA_HOME = SystemProperties.getJavaHome();

  262.     /**
  263.      * The {@code java.io.tmpdir} System Property. Default temp file path.
  264.      *
  265.      * <p>
  266.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  267.      * not exist.
  268.      * </p>
  269.      * <p>
  270.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  271.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  272.      * sync with that System property.
  273.      * </p>
  274.      *
  275.      * @see SystemProperties#getJavaIoTmpdir()
  276.      * @since Java 1.2
  277.      */
  278.     public static final String JAVA_IO_TMPDIR = SystemProperties.getJavaIoTmpdir();

  279.     /**
  280.      * The {@code java.library.path} System Property. List of paths to search when loading libraries.
  281.      *
  282.      * <p>
  283.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  284.      * not exist.
  285.      * </p>
  286.      * <p>
  287.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  288.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  289.      * sync with that System property.
  290.      * </p>
  291.      *
  292.      * @see SystemProperties#getJavaLibraryPath()
  293.      * @since Java 1.2
  294.      */
  295.     public static final String JAVA_LIBRARY_PATH = SystemProperties.getJavaLibraryPath();

  296.     /**
  297.      * The {@code java.runtime.name} System Property. Java Runtime Environment name.
  298.      *
  299.      * <p>
  300.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  301.      * not exist.
  302.      * </p>
  303.      * <p>
  304.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  305.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  306.      * sync with that System property.
  307.      * </p>
  308.      *
  309.      * @see SystemProperties#getJavaRuntimeName()
  310.      * @since 2.0
  311.      * @since Java 1.3
  312.      */
  313.     public static final String JAVA_RUNTIME_NAME = SystemProperties.getJavaRuntimeName();

  314.     /**
  315.      * The {@code java.runtime.version} System Property. Java Runtime Environment version.
  316.      *
  317.      * <p>
  318.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  319.      * not exist.
  320.      * </p>
  321.      * <p>
  322.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  323.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  324.      * sync with that System property.
  325.      * </p>
  326.      *
  327.      * @see SystemProperties#getJavaRuntimeVersion()
  328.      * @since 2.0
  329.      * @since Java 1.3
  330.      */
  331.     public static final String JAVA_RUNTIME_VERSION = SystemProperties.getJavaRuntimeVersion();

  332.     /**
  333.      * The {@code java.specification.name} System Property. Java Runtime Environment specification name.
  334.      *
  335.      * <p>
  336.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  337.      * not exist.
  338.      * </p>
  339.      * <p>
  340.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  341.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  342.      * sync with that System property.
  343.      * </p>
  344.      *
  345.      * @see SystemProperties#getJavaSpecificationName()
  346.      * @since Java 1.2
  347.      */
  348.     public static final String JAVA_SPECIFICATION_NAME = SystemProperties.getJavaSpecificationName();

  349.     /**
  350.      * The {@code java.specification.vendor} System Property. Java Runtime Environment specification vendor.
  351.      *
  352.      * <p>
  353.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  354.      * not exist.
  355.      * </p>
  356.      * <p>
  357.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  358.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  359.      * sync with that System property.
  360.      * </p>
  361.      *
  362.      * @see SystemProperties#getJavaSpecificationVendor()
  363.      * @since Java 1.2
  364.      */
  365.     public static final String JAVA_SPECIFICATION_VENDOR = SystemProperties.getJavaSpecificationVendor();

  366.     /**
  367.      * The {@code java.specification.version} System Property. Java Runtime Environment specification version.
  368.      *
  369.      * <p>
  370.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  371.      * not exist.
  372.      * </p>
  373.      * <p>
  374.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  375.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  376.      * sync with that System property.
  377.      * </p>
  378.      *
  379.      * @see SystemProperties#getJavaSpecificationVersion()
  380.      * @since Java 1.3
  381.      */
  382.     public static final String JAVA_SPECIFICATION_VERSION = SystemProperties.getJavaSpecificationVersion();

  383.     private static final JavaVersion JAVA_SPECIFICATION_VERSION_AS_ENUM = JavaVersion.get(JAVA_SPECIFICATION_VERSION);

  384.     /**
  385.      * The {@code java.util.prefs.PreferencesFactory} System Property. A class name.
  386.      *
  387.      * <p>
  388.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  389.      * not exist.
  390.      * </p>
  391.      * <p>
  392.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  393.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  394.      * sync with that System property.
  395.      * </p>
  396.      *
  397.      * @see SystemProperties#getJavaUtilPrefsPreferencesFactory()
  398.      * @since 2.1
  399.      * @since Java 1.4
  400.      */
  401.     public static final String JAVA_UTIL_PREFS_PREFERENCES_FACTORY = SystemProperties.getJavaUtilPrefsPreferencesFactory();

  402.     /**
  403.      * The {@code java.vendor} System Property. Java vendor-specific string.
  404.      *
  405.      * <p>
  406.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  407.      * not exist.
  408.      * </p>
  409.      * <p>
  410.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  411.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  412.      * sync with that System property.
  413.      * </p>
  414.      *
  415.      * @see SystemProperties#getJavaVendor()
  416.      * @since Java 1.1
  417.      */
  418.     public static final String JAVA_VENDOR = SystemProperties.getJavaVendor();

  419.     /**
  420.      * The {@code java.vendor.url} System Property. Java vendor URL.
  421.      *
  422.      * <p>
  423.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  424.      * not exist.
  425.      * </p>
  426.      * <p>
  427.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  428.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  429.      * sync with that System property.
  430.      * </p>
  431.      *
  432.      * @see SystemProperties#getJavaVendorUrl()
  433.      * @since Java 1.1
  434.      */
  435.     public static final String JAVA_VENDOR_URL = SystemProperties.getJavaVendorUrl();

  436.     /**
  437.      * The {@code java.version} System Property. Java version number.
  438.      *
  439.      * <p>
  440.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  441.      * not exist.
  442.      * </p>
  443.      * <p>
  444.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  445.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  446.      * sync with that System property.
  447.      * </p>
  448.      *
  449.      * @see SystemProperties#getJavaVersion()
  450.      * @since Java 1.1
  451.      */
  452.     public static final String JAVA_VERSION = SystemProperties.getJavaVersion();

  453.     /**
  454.      * The {@code java.vm.info} System Property. Java Virtual Machine implementation info.
  455.      *
  456.      * <p>
  457.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  458.      * not exist.
  459.      * </p>
  460.      * <p>
  461.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  462.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  463.      * sync with that System property.
  464.      * </p>
  465.      *
  466.      * @see SystemProperties#getJavaVmInfo()
  467.      * @since 2.0
  468.      * @since Java 1.2
  469.      */
  470.     public static final String JAVA_VM_INFO = SystemProperties.getJavaVmInfo();

  471.     /**
  472.      * The {@code java.vm.name} System Property. Java Virtual Machine implementation name.
  473.      *
  474.      * <p>
  475.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  476.      * not exist.
  477.      * </p>
  478.      * <p>
  479.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  480.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  481.      * sync with that System property.
  482.      * </p>
  483.      *
  484.      * @see SystemProperties#getJavaVmName()
  485.      * @since Java 1.2
  486.      */
  487.     public static final String JAVA_VM_NAME = SystemProperties.getJavaVmName();

  488.     /**
  489.      * The {@code java.vm.specification.name} System Property. Java Virtual Machine specification name.
  490.      *
  491.      * <p>
  492.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  493.      * not exist.
  494.      * </p>
  495.      * <p>
  496.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  497.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  498.      * sync with that System property.
  499.      * </p>
  500.      *
  501.      * @see SystemProperties#getJavaVmSpecificationName()
  502.      * @since Java 1.2
  503.      */
  504.     public static final String JAVA_VM_SPECIFICATION_NAME = SystemProperties.getJavaVmSpecificationName();

  505.     /**
  506.      * The {@code java.vm.specification.vendor} System Property. Java Virtual Machine specification vendor.
  507.      *
  508.      * <p>
  509.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  510.      * not exist.
  511.      * </p>
  512.      * <p>
  513.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  514.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  515.      * sync with that System property.
  516.      * </p>
  517.      *
  518.      * @see SystemProperties#getJavaVmSpecificationVendor()
  519.      * @since Java 1.2
  520.      */
  521.     public static final String JAVA_VM_SPECIFICATION_VENDOR = SystemProperties.getJavaVmSpecificationVendor();

  522.     /**
  523.      * The {@code java.vm.specification.version} System Property. Java Virtual Machine specification version.
  524.      *
  525.      * <p>
  526.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  527.      * not exist.
  528.      * </p>
  529.      * <p>
  530.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  531.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  532.      * sync with that System property.
  533.      * </p>
  534.      *
  535.      * @see SystemProperties#getJavaVmSpecificationVersion()
  536.      * @since Java 1.2
  537.      */
  538.     public static final String JAVA_VM_SPECIFICATION_VERSION = SystemProperties.getJavaVmSpecificationVersion();

  539.     /**
  540.      * The {@code java.vm.vendor} System Property. Java Virtual Machine implementation vendor.
  541.      *
  542.      * <p>
  543.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  544.      * not exist.
  545.      * </p>
  546.      * <p>
  547.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  548.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  549.      * sync with that System property.
  550.      * </p>
  551.      *
  552.      * @see SystemProperties#getJavaVmVendor()
  553.      * @since Java 1.2
  554.      */
  555.     public static final String JAVA_VM_VENDOR = SystemProperties.getJavaVmVendor();

  556.     /**
  557.      * The {@code java.vm.version} System Property. Java Virtual Machine implementation version.
  558.      *
  559.      * <p>
  560.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  561.      * not exist.
  562.      * </p>
  563.      * <p>
  564.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  565.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  566.      * sync with that System property.
  567.      * </p>
  568.      *
  569.      * @see SystemProperties#getJavaVmVersion()
  570.      * @since Java 1.2
  571.      */
  572.     public static final String JAVA_VM_VERSION = SystemProperties.getJavaVmVersion();

  573.     /**
  574.      * The {@code line.separator} System Property. Line separator ({@code &quot;\n&quot;} on UNIX).
  575.      *
  576.      * <p>
  577.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  578.      * not exist.
  579.      * </p>
  580.      * <p>
  581.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  582.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  583.      * sync with that System property.
  584.      * </p>
  585.      *
  586.      * @see SystemProperties#getLineSeparator()
  587.      * @deprecated Use {@link System#lineSeparator()} instead, since it does not require a privilege check.
  588.      * @since Java 1.1
  589.      */
  590.     @Deprecated
  591.     public static final String LINE_SEPARATOR = SystemProperties.getLineSeparator();

  592.     /**
  593.      * The {@code os.arch} System Property. Operating system architecture.
  594.      *
  595.      * <p>
  596.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  597.      * not exist.
  598.      * </p>
  599.      * <p>
  600.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  601.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  602.      * sync with that System property.
  603.      * </p>
  604.      *
  605.      * @see SystemProperties#getOsArch()
  606.      * @since Java 1.1
  607.      */
  608.     public static final String OS_ARCH = SystemProperties.getOsArch();

  609.     /**
  610.      * The {@code os.name} System Property. Operating system name.
  611.      *
  612.      * <p>
  613.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  614.      * not exist.
  615.      * </p>
  616.      * <p>
  617.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  618.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  619.      * sync with that System property.
  620.      * </p>
  621.      *
  622.      * @see SystemProperties#getOsName()
  623.      * @since Java 1.1
  624.      */
  625.     public static final String OS_NAME = SystemProperties.getOsName();

  626.     /**
  627.      * The {@code os.version} System Property. Operating system version.
  628.      *
  629.      * <p>
  630.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  631.      * not exist.
  632.      * </p>
  633.      * <p>
  634.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  635.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  636.      * sync with that System property.
  637.      * </p>
  638.      *
  639.      * @see SystemProperties#getOsVersion()
  640.      * @since Java 1.1
  641.      */
  642.     public static final String OS_VERSION = SystemProperties.getOsVersion();

  643.     /**
  644.      * The {@code path.separator} System Property. Path separator ({@code &quot;:&quot;} on UNIX).
  645.      *
  646.      * <p>
  647.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  648.      * not exist.
  649.      * </p>
  650.      * <p>
  651.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  652.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  653.      * sync with that System property.
  654.      * </p>
  655.      *
  656.      * @see SystemProperties#getPathSeparator()
  657.      * @deprecated Use {@link File#pathSeparator}, since it is guaranteed to be a
  658.      *             string containing a single character and it does not require a privilege check.
  659.      * @since Java 1.1
  660.      */
  661.     @Deprecated
  662.     public static final String PATH_SEPARATOR = SystemProperties.getPathSeparator();

  663.     /**
  664.      * The {@code user.country} or {@code user.region} System Property. User's country code, such as {@code "GB"}. First
  665.      * in Java version 1.2 as {@code user.region}. Renamed to {@code user.country} in 1.4
  666.      *
  667.      * <p>
  668.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  669.      * not exist.
  670.      * </p>
  671.      * <p>
  672.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  673.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  674.      * sync with that System property.
  675.      * </p>
  676.      *
  677.      * @since 2.0
  678.      * @since Java 1.2
  679.      */
  680.     public static final String USER_COUNTRY = SystemProperties.getProperty(SystemProperties.USER_COUNTRY,
  681.             () -> SystemProperties.getProperty(SystemProperties.USER_REGION));

  682.     /**
  683.      * The {@code user.dir} System Property. User's current working directory.
  684.      *
  685.      * <p>
  686.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  687.      * not exist.
  688.      * </p>
  689.      * <p>
  690.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  691.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  692.      * sync with that System property.
  693.      * </p>
  694.      *
  695.      * @see SystemProperties#getUserDir()
  696.      * @since Java 1.1
  697.      */
  698.     public static final String USER_DIR = SystemProperties.getUserDir();

  699.     /**
  700.      * The {@code user.home} System Property. User's home directory.
  701.      *
  702.      * <p>
  703.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  704.      * not exist.
  705.      * </p>
  706.      * <p>
  707.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  708.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  709.      * sync with that System property.
  710.      * </p>
  711.      *
  712.      * @see SystemProperties#getUserHome()
  713.      * @since Java 1.1
  714.      */
  715.     public static final String USER_HOME = SystemProperties.getUserHome();

  716.     /**
  717.      * The {@code user.language} System Property. User's language code, such as {@code "en"}.
  718.      *
  719.      * <p>
  720.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  721.      * not exist.
  722.      * </p>
  723.      * <p>
  724.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  725.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  726.      * sync with that System property.
  727.      * </p>
  728.      *
  729.      * @see SystemProperties#getUserLanguage()
  730.      * @since 2.0
  731.      * @since Java 1.2
  732.      */
  733.     public static final String USER_LANGUAGE = SystemProperties.getUserLanguage();

  734.     /**
  735.      * The {@code user.name} System Property. User's account name.
  736.      *
  737.      * <p>
  738.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  739.      * not exist.
  740.      * </p>
  741.      * <p>
  742.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  743.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  744.      * sync with that System property.
  745.      * </p>
  746.      *
  747.      * @see SystemProperties#getUserName()
  748.      * @since Java 1.1
  749.      */
  750.     public static final String USER_NAME = SystemProperties.getUserName();

  751.     /**
  752.      * The {@code user.timezone} System Property. For example: {@code "America/Los_Angeles"}.
  753.      *
  754.      * <p>
  755.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  756.      * not exist.
  757.      * </p>
  758.      * <p>
  759.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  760.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  761.      * sync with that System property.
  762.      * </p>
  763.      *
  764.      * @see SystemProperties#getUserTimezone()
  765.      * @since 2.1
  766.      */
  767.     public static final String USER_TIMEZONE = SystemProperties.getUserTimezone();

  768.     // Java version checks
  769.     // -----------------------------------------------------------------------
  770.     // These MUST be declared after those above as they depend on the
  771.     // values being set up

  772.     /**
  773.      * Is {@code true} if this is Java version 1.1 (also 1.1.x versions).
  774.      *
  775.      * <p>
  776.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  777.      * </p>
  778.      * <p>
  779.      * This value is initialized when the class is loaded.
  780.      * </p>
  781.      */
  782.     public static final boolean IS_JAVA_1_1 = getJavaVersionMatches("1.1");

  783.     /**
  784.      * Is {@code true} if this is Java version 1.2 (also 1.2.x versions).
  785.      *
  786.      * <p>
  787.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  788.      * </p>
  789.      * <p>
  790.      * This value is initialized when the class is loaded.
  791.      * </p>
  792.      */
  793.     public static final boolean IS_JAVA_1_2 = getJavaVersionMatches("1.2");

  794.     /**
  795.      * Is {@code true} if this is Java version 1.3 (also 1.3.x versions).
  796.      *
  797.      * <p>
  798.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  799.      * </p>
  800.      * <p>
  801.      * This value is initialized when the class is loaded.
  802.      * </p>
  803.      */
  804.     public static final boolean IS_JAVA_1_3 = getJavaVersionMatches("1.3");

  805.     /**
  806.      * Is {@code true} if this is Java version 1.4 (also 1.4.x versions).
  807.      *
  808.      * <p>
  809.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  810.      * </p>
  811.      * <p>
  812.      * This value is initialized when the class is loaded.
  813.      * </p>
  814.      */
  815.     public static final boolean IS_JAVA_1_4 = getJavaVersionMatches("1.4");

  816.     /**
  817.      * Is {@code true} if this is Java version 1.5 (also 1.5.x versions).
  818.      *
  819.      * <p>
  820.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  821.      * </p>
  822.      * <p>
  823.      * This value is initialized when the class is loaded.
  824.      * </p>
  825.      */
  826.     public static final boolean IS_JAVA_1_5 = getJavaVersionMatches("1.5");

  827.     /**
  828.      * Is {@code true} if this is Java version 1.6 (also 1.6.x versions).
  829.      *
  830.      * <p>
  831.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  832.      * </p>
  833.      * <p>
  834.      * This value is initialized when the class is loaded.
  835.      * </p>
  836.      */
  837.     public static final boolean IS_JAVA_1_6 = getJavaVersionMatches("1.6");

  838.     /**
  839.      * Is {@code true} if this is Java version 1.7 (also 1.7.x versions).
  840.      *
  841.      * <p>
  842.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  843.      * </p>
  844.      * <p>
  845.      * This value is initialized when the class is loaded.
  846.      * </p>
  847.      *
  848.      * @since 3.0
  849.      */
  850.     public static final boolean IS_JAVA_1_7 = getJavaVersionMatches("1.7");

  851.     /**
  852.      * Is {@code true} if this is Java version 1.8 (also 1.8.x versions).
  853.      *
  854.      * <p>
  855.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  856.      * </p>
  857.      * <p>
  858.      * This value is initialized when the class is loaded.
  859.      * </p>
  860.      *
  861.      * @since 3.3.2
  862.      */
  863.     public static final boolean IS_JAVA_1_8 = getJavaVersionMatches("1.8");

  864.     /**
  865.      * Is {@code true} if this is Java version 1.9 (also 1.9.x versions).
  866.      *
  867.      * <p>
  868.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  869.      * </p>
  870.      * <p>
  871.      * This value is initialized when the class is loaded.
  872.      * </p>
  873.      *
  874.      * @since 3.4
  875.      *
  876.      * @deprecated As of release 3.5, replaced by {@link #IS_JAVA_9}
  877.      */
  878.     @Deprecated
  879.     public static final boolean IS_JAVA_1_9 = getJavaVersionMatches("9");

  880.     /**
  881.      * Is {@code true} if this is Java version 9 (also 9.x versions).
  882.      *
  883.      * <p>
  884.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  885.      * </p>
  886.      * <p>
  887.      * This value is initialized when the class is loaded.
  888.      * </p>
  889.      *
  890.      * @since 3.5
  891.      */
  892.     public static final boolean IS_JAVA_9 = getJavaVersionMatches("9");

  893.     /**
  894.      * Is {@code true} if this is Java version 10 (also 10.x versions).
  895.      *
  896.      * <p>
  897.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  898.      * </p>
  899.      * <p>
  900.      * This value is initialized when the class is loaded.
  901.      * </p>
  902.      *
  903.      * @since 3.7
  904.      */
  905.     public static final boolean IS_JAVA_10 = getJavaVersionMatches("10");

  906.     /**
  907.      * Is {@code true} if this is Java version 11 (also 11.x versions).
  908.      *
  909.      * <p>
  910.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  911.      * </p>
  912.      * <p>
  913.      * This value is initialized when the class is loaded.
  914.      * </p>
  915.      *
  916.      * @since 3.8
  917.      */
  918.     public static final boolean IS_JAVA_11 = getJavaVersionMatches("11");

  919.     /**
  920.      * Is {@code true} if this is Java version 12 (also 12.x versions).
  921.      *
  922.      * <p>
  923.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  924.      * </p>
  925.      * <p>
  926.      * This value is initialized when the class is loaded.
  927.      * </p>
  928.      *
  929.      * @since 3.9
  930.      */
  931.     public static final boolean IS_JAVA_12 = getJavaVersionMatches("12");

  932.     /**
  933.      * Is {@code true} if this is Java version 13 (also 13.x versions).
  934.      *
  935.      * <p>
  936.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  937.      * </p>
  938.      * <p>
  939.      * This value is initialized when the class is loaded.
  940.      * </p>
  941.      *
  942.      * @since 3.9
  943.      */
  944.     public static final boolean IS_JAVA_13 = getJavaVersionMatches("13");

  945.     /**
  946.      * Is {@code true} if this is Java version 14 (also 14.x versions).
  947.      *
  948.      * <p>
  949.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  950.      * </p>
  951.      * <p>
  952.      * This value is initialized when the class is loaded.
  953.      * </p>
  954.      *
  955.      * @since 3.10
  956.      */
  957.     public static final boolean IS_JAVA_14 = getJavaVersionMatches("14");

  958.     /**
  959.      * Is {@code true} if this is Java version 15 (also 15.x versions).
  960.      *
  961.      * <p>
  962.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  963.      * </p>
  964.      * <p>
  965.      * This value is initialized when the class is loaded.
  966.      * </p>
  967.      *
  968.      * @since 3.10
  969.      */
  970.     public static final boolean IS_JAVA_15 = getJavaVersionMatches("15");

  971.     /**
  972.      * Is {@code true} if this is Java version 16 (also 16.x versions).
  973.      * <p>
  974.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  975.      * </p>
  976.      * <p>
  977.      * This value is initialized when the class is loaded.
  978.      * </p>
  979.      *
  980.      * @since 3.13.0
  981.      */
  982.     public static final boolean IS_JAVA_16 = getJavaVersionMatches("16");

  983.     /**
  984.      * Is {@code true} if this is Java version 17 (also 17.x versions).
  985.      * <p>
  986.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  987.      * </p>
  988.      * <p>
  989.      * This value is initialized when the class is loaded.
  990.      * </p>
  991.      *
  992.      * @since 3.13.0
  993.      */
  994.     public static final boolean IS_JAVA_17 = getJavaVersionMatches("17");

  995.     /**
  996.      * Is {@code true} if this is Java version 18 (also 18.x versions).
  997.      * <p>
  998.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  999.      * </p>
  1000.      * <p>
  1001.      * This value is initialized when the class is loaded.
  1002.      * </p>
  1003.      *
  1004.      * @since 3.13.0
  1005.      */
  1006.     public static final boolean IS_JAVA_18 = getJavaVersionMatches("18");

  1007.     /**
  1008.      * Is {@code true} if this is Java version 19 (also 19.x versions).
  1009.      * <p>
  1010.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  1011.      * </p>
  1012.      * <p>
  1013.      * This value is initialized when the class is loaded.
  1014.      * </p>
  1015.      *
  1016.      * @since 3.13.0
  1017.      */
  1018.     public static final boolean IS_JAVA_19 = getJavaVersionMatches("19");

  1019.     /**
  1020.      * Is {@code true} if this is Java version 20 (also 20.x versions).
  1021.      * <p>
  1022.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  1023.      * </p>
  1024.      * <p>
  1025.      * This value is initialized when the class is loaded.
  1026.      * </p>
  1027.      *
  1028.      * @since 3.13.0
  1029.      */
  1030.     public static final boolean IS_JAVA_20 = getJavaVersionMatches("20");

  1031.     /**
  1032.      * Is {@code true} if this is Java version 21 (also 21.x versions).
  1033.      * <p>
  1034.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  1035.      * </p>
  1036.      * <p>
  1037.      * This value is initialized when the class is loaded.
  1038.      * </p>
  1039.      *
  1040.      * @since 3.13.0
  1041.      */
  1042.     public static final boolean IS_JAVA_21 = getJavaVersionMatches("21");

  1043.     /**
  1044.      * Is {@code true} if this is Java version 22 (also 22.x versions).
  1045.      * <p>
  1046.      * The field will return {@code false} if {@link #JAVA_VERSION} is {@code null}.
  1047.      * </p>
  1048.      * <p>
  1049.      * This value is initialized when the class is loaded.
  1050.      * </p>
  1051.      *
  1052.      * @since 3.15.0
  1053.      */
  1054.     public static final boolean IS_JAVA_22 = getJavaVersionMatches("22");

  1055.     // Operating system checks
  1056.     // -----------------------------------------------------------------------
  1057.     // These MUST be declared after those above as they depend on the
  1058.     // values being set up
  1059.     // Please advise dev@commons.apache.org if you want another added
  1060.     // or a mistake corrected

  1061.     /**
  1062.      * Is {@code true} if this is AIX.
  1063.      *
  1064.      * <p>
  1065.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1066.      * </p>
  1067.      * <p>
  1068.      * This value is initialized when the class is loaded.
  1069.      * </p>
  1070.      *
  1071.      * @since 2.0
  1072.      */
  1073.     public static final boolean IS_OS_AIX = getOsMatchesName("AIX");

  1074.     /**
  1075.      * Is {@code true} if this is Android.
  1076.      *
  1077.      * <p>
  1078.      * See https://developer.android.com/reference/java/lang/System#getProperties().
  1079.      * </p>
  1080.      * <p>
  1081.      * This value is initialized when the class is loaded.
  1082.      * </p>
  1083.      *
  1084.      * @since 3.15.0
  1085.      */
  1086.     public static final boolean IS_OS_ANDROID = SystemProperties.getJavaVendor().contains("Android");

  1087.     /**
  1088.      * Is {@code true} if this is HP-UX.
  1089.      *
  1090.      * <p>
  1091.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1092.      * </p>
  1093.      * <p>
  1094.      * This value is initialized when the class is loaded.
  1095.      * </p>
  1096.      *
  1097.      * @since 2.0
  1098.      */
  1099.     public static final boolean IS_OS_HP_UX = getOsMatchesName("HP-UX");

  1100.     /**
  1101.      * Is {@code true} if this is IBM OS/400.
  1102.      *
  1103.      * <p>
  1104.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1105.      * </p>
  1106.      * <p>
  1107.      * This value is initialized when the class is loaded.
  1108.      * </p>
  1109.      *
  1110.      * @since 3.3
  1111.      */
  1112.     public static final boolean IS_OS_400 = getOsMatchesName("OS/400");

  1113.     /**
  1114.      * Is {@code true} if this is Irix.
  1115.      *
  1116.      * <p>
  1117.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1118.      * </p>
  1119.      * <p>
  1120.      * This value is initialized when the class is loaded.
  1121.      * </p>
  1122.      *
  1123.      * @since 2.0
  1124.      */
  1125.     public static final boolean IS_OS_IRIX = getOsMatchesName("Irix");

  1126.     /**
  1127.      * Is {@code true} if this is Linux.
  1128.      *
  1129.      * <p>
  1130.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1131.      * </p>
  1132.      * <p>
  1133.      * This value is initialized when the class is loaded.
  1134.      * </p>
  1135.      *
  1136.      * @since 2.0
  1137.      */
  1138.     public static final boolean IS_OS_LINUX = getOsMatchesName("Linux") || getOsMatchesName("LINUX");

  1139.     /**
  1140.      * Is {@code true} if this is Mac.
  1141.      *
  1142.      * <p>
  1143.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1144.      * </p>
  1145.      * <p>
  1146.      * This value is initialized when the class is loaded.
  1147.      * </p>
  1148.      *
  1149.      * @since 2.0
  1150.      */
  1151.     public static final boolean IS_OS_MAC = getOsMatchesName("Mac");

  1152.     /**
  1153.      * Is {@code true} if this is Mac.
  1154.      *
  1155.      * <p>
  1156.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1157.      * </p>
  1158.      * <p>
  1159.      * This value is initialized when the class is loaded.
  1160.      * </p>
  1161.      *
  1162.      * @since 2.0
  1163.      */
  1164.     public static final boolean IS_OS_MAC_OSX = getOsMatchesName("Mac OS X");

  1165.     /**
  1166.      * Is {@code true} if this is macOS X Cheetah.
  1167.      *
  1168.      * <p>
  1169.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1170.      * </p>
  1171.      * <p>
  1172.      * This value is initialized when the class is loaded.
  1173.      * </p>
  1174.      *
  1175.      * @since 3.4
  1176.      */
  1177.     public static final boolean IS_OS_MAC_OSX_CHEETAH = getOsMatches("Mac OS X", "10.0");

  1178.     /**
  1179.      * Is {@code true} if this is macOS X Puma.
  1180.      *
  1181.      * <p>
  1182.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1183.      * </p>
  1184.      * <p>
  1185.      * This value is initialized when the class is loaded.
  1186.      * </p>
  1187.      *
  1188.      * @since 3.4
  1189.      */
  1190.     public static final boolean IS_OS_MAC_OSX_PUMA = getOsMatches("Mac OS X", "10.1");

  1191.     /**
  1192.      * Is {@code true} if this is macOS X Jaguar.
  1193.      *
  1194.      * <p>
  1195.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1196.      * </p>
  1197.      * <p>
  1198.      * This value is initialized when the class is loaded.
  1199.      * </p>
  1200.      *
  1201.      * @since 3.4
  1202.      */
  1203.     public static final boolean IS_OS_MAC_OSX_JAGUAR = getOsMatches("Mac OS X", "10.2");

  1204.     /**
  1205.      * Is {@code true} if this is macOS X Panther.
  1206.      *
  1207.      * <p>
  1208.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1209.      * </p>
  1210.      * <p>
  1211.      * This value is initialized when the class is loaded.
  1212.      * </p>
  1213.      *
  1214.      * @since 3.4
  1215.      */
  1216.     public static final boolean IS_OS_MAC_OSX_PANTHER = getOsMatches("Mac OS X", "10.3");

  1217.     /**
  1218.      * Is {@code true} if this is macOS X Tiger.
  1219.      *
  1220.      * <p>
  1221.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1222.      * </p>
  1223.      * <p>
  1224.      * This value is initialized when the class is loaded.
  1225.      * </p>
  1226.      *
  1227.      * @since 3.4
  1228.      */
  1229.     public static final boolean IS_OS_MAC_OSX_TIGER = getOsMatches("Mac OS X", "10.4");

  1230.     /**
  1231.      * Is {@code true} if this is macOS X Leopard.
  1232.      *
  1233.      * <p>
  1234.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1235.      * </p>
  1236.      * <p>
  1237.      * This value is initialized when the class is loaded.
  1238.      * </p>
  1239.      *
  1240.      * @since 3.4
  1241.      */
  1242.     public static final boolean IS_OS_MAC_OSX_LEOPARD = getOsMatches("Mac OS X", "10.5");

  1243.     /**
  1244.      * Is {@code true} if this is macOS X Snow Leopard.
  1245.      *
  1246.      * <p>
  1247.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1248.      * </p>
  1249.      * <p>
  1250.      * This value is initialized when the class is loaded.
  1251.      * </p>
  1252.      *
  1253.      * @since 3.4
  1254.      */
  1255.     public static final boolean IS_OS_MAC_OSX_SNOW_LEOPARD = getOsMatches("Mac OS X", "10.6");

  1256.     /**
  1257.      * Is {@code true} if this is macOS X Lion.
  1258.      *
  1259.      * <p>
  1260.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1261.      * </p>
  1262.      * <p>
  1263.      * This value is initialized when the class is loaded.
  1264.      * </p>
  1265.      *
  1266.      * @since 3.4
  1267.      */
  1268.     public static final boolean IS_OS_MAC_OSX_LION = getOsMatches("Mac OS X", "10.7");

  1269.     /**
  1270.      * Is {@code true} if this is macOS X Mountain Lion.
  1271.      *
  1272.      * <p>
  1273.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1274.      * </p>
  1275.      * <p>
  1276.      * This value is initialized when the class is loaded.
  1277.      * </p>
  1278.      *
  1279.      * @since 3.4
  1280.      */
  1281.     public static final boolean IS_OS_MAC_OSX_MOUNTAIN_LION = getOsMatches("Mac OS X", "10.8");

  1282.     /**
  1283.      * Is {@code true} if this is macOS X Mavericks.
  1284.      *
  1285.      * <p>
  1286.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1287.      * </p>
  1288.      * <p>
  1289.      * This value is initialized when the class is loaded.
  1290.      * </p>
  1291.      *
  1292.      * @since 3.4
  1293.      */
  1294.     public static final boolean IS_OS_MAC_OSX_MAVERICKS = getOsMatches("Mac OS X", "10.9");

  1295.     /**
  1296.      * Is {@code true} if this is macOS X Yosemite.
  1297.      *
  1298.      * <p>
  1299.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1300.      * </p>
  1301.      * <p>
  1302.      * This value is initialized when the class is loaded.
  1303.      * </p>
  1304.      *
  1305.      * @since 3.4
  1306.      */
  1307.     public static final boolean IS_OS_MAC_OSX_YOSEMITE = getOsMatches("Mac OS X", "10.10");

  1308.     /**
  1309.      * Is {@code true} if this is macOS X El Capitan.
  1310.      *
  1311.      * <p>
  1312.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1313.      * </p>
  1314.      * <p>
  1315.      * This value is initialized when the class is loaded.
  1316.      * </p>
  1317.      *
  1318.      * @since 3.5
  1319.      */
  1320.     public static final boolean IS_OS_MAC_OSX_EL_CAPITAN = getOsMatches("Mac OS X", "10.11");

  1321.     /**
  1322.      * Is {@code true} if this is macOS X Sierra.
  1323.      *
  1324.      * <p>
  1325.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1326.      * </p>
  1327.      * <p>
  1328.      * This value is initialized when the class is loaded.
  1329.      * </p>
  1330.      *
  1331.      * @since 3.12.0
  1332.      */
  1333.     public static final boolean IS_OS_MAC_OSX_SIERRA = getOsMatches("Mac OS X", "10.12");

  1334.     /**
  1335.      * Is {@code true} if this is macOS X High Sierra.
  1336.      *
  1337.      * <p>
  1338.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1339.      * </p>
  1340.      * <p>
  1341.      * This value is initialized when the class is loaded.
  1342.      * </p>
  1343.      *
  1344.      * @since 3.12.0
  1345.      */
  1346.     public static final boolean IS_OS_MAC_OSX_HIGH_SIERRA = getOsMatches("Mac OS X", "10.13");

  1347.     /**
  1348.      * Is {@code true} if this is macOS X Mojave.
  1349.      *
  1350.      * <p>
  1351.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1352.      * </p>
  1353.      * <p>
  1354.      * This value is initialized when the class is loaded.
  1355.      * </p>
  1356.      *
  1357.      * @since 3.12.0
  1358.      */
  1359.     public static final boolean IS_OS_MAC_OSX_MOJAVE = getOsMatches("Mac OS X", "10.14");

  1360.     /**
  1361.      * Is {@code true} if this is macOS X Catalina.
  1362.      *
  1363.      * <p>
  1364.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1365.      * </p>
  1366.      * <p>
  1367.      * This value is initialized when the class is loaded.
  1368.      * </p>
  1369.      *
  1370.      * @since 3.12.0
  1371.      */
  1372.     public static final boolean IS_OS_MAC_OSX_CATALINA = getOsMatches("Mac OS X", "10.15");

  1373.     /**
  1374.      * Is {@code true} if this is macOS X Big Sur.
  1375.      *
  1376.      * <p>
  1377.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1378.      * </p>
  1379.      * <p>
  1380.      * This value is initialized when the class is loaded.
  1381.      * </p>
  1382.      *
  1383.      * @since 3.12.0
  1384.      */
  1385.     public static final boolean IS_OS_MAC_OSX_BIG_SUR = getOsMatches("Mac OS X", "11");

  1386.     /**
  1387.      * Is {@code true} if this is macOS X Monterey.
  1388.      *
  1389.      * <p>
  1390.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1391.      * </p>
  1392.      * <p>
  1393.      * This value is initialized when the class is loaded.
  1394.      * </p>
  1395.      * @since 3.13.0
  1396.      */
  1397.     public static final boolean IS_OS_MAC_OSX_MONTEREY = getOsMatches("Mac OS X", "12");

  1398.     /**
  1399.      * Is {@code true} if this is macOS X Ventura.
  1400.      *
  1401.      * <p>
  1402.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1403.      * </p>
  1404.      * <p>
  1405.      * This value is initialized when the class is loaded.
  1406.      * </p>
  1407.      * @since 3.13.0
  1408.      */
  1409.     public static final boolean IS_OS_MAC_OSX_VENTURA = getOsMatches("Mac OS X", "13");

  1410.     /**
  1411.      * Is {@code true} if this is macOS X Sonoma.
  1412.      *
  1413.      * <p>
  1414.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1415.      * </p>
  1416.      * <p>
  1417.      * This value is initialized when the class is loaded.
  1418.      * </p>
  1419.      * @since 3.15.0
  1420.      */
  1421.     public static final boolean IS_OS_MAC_OSX_SONOMA = getOsMatches("Mac OS X", "14");

  1422.     /**
  1423.      * Is {@code true} if this is FreeBSD.
  1424.      *
  1425.      * <p>
  1426.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1427.      * </p>
  1428.      * <p>
  1429.      * This value is initialized when the class is loaded.
  1430.      * </p>
  1431.      *
  1432.      * @since 3.1
  1433.      */
  1434.     public static final boolean IS_OS_FREE_BSD = getOsMatchesName("FreeBSD");

  1435.     /**
  1436.      * Is {@code true} if this is OpenBSD.
  1437.      *
  1438.      * <p>
  1439.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1440.      * </p>
  1441.      * <p>
  1442.      * This value is initialized when the class is loaded.
  1443.      * </p>
  1444.      *
  1445.      * @since 3.1
  1446.      */
  1447.     public static final boolean IS_OS_OPEN_BSD = getOsMatchesName("OpenBSD");

  1448.     /**
  1449.      * Is {@code true} if this is NetBSD.
  1450.      *
  1451.      * <p>
  1452.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1453.      * </p>
  1454.      * <p>
  1455.      * This value is initialized when the class is loaded.
  1456.      * </p>
  1457.      *
  1458.      * @since 3.1
  1459.      */
  1460.     public static final boolean IS_OS_NET_BSD = getOsMatchesName("NetBSD");

  1461.     /**
  1462.      * Is {@code true} if this is OS/2.
  1463.      *
  1464.      * <p>
  1465.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1466.      * </p>
  1467.      * <p>
  1468.      * This value is initialized when the class is loaded.
  1469.      * </p>
  1470.      *
  1471.      * @since 2.0
  1472.      */
  1473.     public static final boolean IS_OS_OS2 = getOsMatchesName("OS/2");

  1474.     /**
  1475.      * Is {@code true} if this is Solaris.
  1476.      *
  1477.      * <p>
  1478.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1479.      * </p>
  1480.      * <p>
  1481.      * This value is initialized when the class is loaded.
  1482.      * </p>
  1483.      *
  1484.      * @since 2.0
  1485.      */
  1486.     public static final boolean IS_OS_SOLARIS = getOsMatchesName("Solaris");

  1487.     /**
  1488.      * Is {@code true} if this is SunOS.
  1489.      *
  1490.      * <p>
  1491.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1492.      * </p>
  1493.      * <p>
  1494.      * This value is initialized when the class is loaded.
  1495.      * </p>
  1496.      *
  1497.      * @since 2.0
  1498.      */
  1499.     public static final boolean IS_OS_SUN_OS = getOsMatchesName("SunOS");

  1500.     /**
  1501.      * Is {@code true} if this is a UNIX like system, as in any of AIX, HP-UX, Irix, Linux, MacOSX, Solaris or SUN OS.
  1502.      *
  1503.      * <p>
  1504.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1505.      * </p>
  1506.      * <p>
  1507.      * This value is initialized when the class is loaded.
  1508.      * </p>
  1509.      *
  1510.      * @since 2.1
  1511.      */
  1512.     public static final boolean IS_OS_UNIX = IS_OS_AIX || IS_OS_HP_UX || IS_OS_IRIX || IS_OS_LINUX || IS_OS_MAC_OSX
  1513.             || IS_OS_SOLARIS || IS_OS_SUN_OS || IS_OS_FREE_BSD || IS_OS_OPEN_BSD || IS_OS_NET_BSD;

  1514.     /**
  1515.      * Is {@code true} if this is Windows.
  1516.      *
  1517.      * <p>
  1518.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1519.      * </p>
  1520.      * <p>
  1521.      * This value is initialized when the class is loaded.
  1522.      * </p>
  1523.      *
  1524.      * @since 2.0
  1525.      */
  1526.     public static final boolean IS_OS_WINDOWS = getOsMatchesName(OS_NAME_WINDOWS_PREFIX);

  1527.     /**
  1528.      * Is {@code true} if this is Windows 2000.
  1529.      *
  1530.      * <p>
  1531.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1532.      * </p>
  1533.      * <p>
  1534.      * This value is initialized when the class is loaded.
  1535.      * </p>
  1536.      *
  1537.      * @since 2.0
  1538.      */
  1539.     public static final boolean IS_OS_WINDOWS_2000 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " 2000");

  1540.     /**
  1541.      * Is {@code true} if this is Windows 2003.
  1542.      *
  1543.      * <p>
  1544.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1545.      * </p>
  1546.      * <p>
  1547.      * This value is initialized when the class is loaded.
  1548.      * </p>
  1549.      *
  1550.      * @since 3.1
  1551.      */
  1552.     public static final boolean IS_OS_WINDOWS_2003 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " 2003");

  1553.     /**
  1554.      * Is {@code true} if this is Windows Server 2008.
  1555.      *
  1556.      * <p>
  1557.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1558.      * </p>
  1559.      * <p>
  1560.      * This value is initialized when the class is loaded.
  1561.      * </p>
  1562.      *
  1563.      * @since 3.1
  1564.      */
  1565.     public static final boolean IS_OS_WINDOWS_2008 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " Server 2008");

  1566.     /**
  1567.      * Is {@code true} if this is Windows Server 2012.
  1568.      *
  1569.      * <p>
  1570.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1571.      * </p>
  1572.      * <p>
  1573.      * This value is initialized when the class is loaded.
  1574.      * </p>
  1575.      *
  1576.      * @since 3.4
  1577.      */
  1578.     public static final boolean IS_OS_WINDOWS_2012 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " Server 2012");

  1579.     /**
  1580.      * Is {@code true} if this is Windows 95.
  1581.      *
  1582.      * <p>
  1583.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1584.      * </p>
  1585.      * <p>
  1586.      * This value is initialized when the class is loaded.
  1587.      * </p>
  1588.      *
  1589.      * @since 2.0
  1590.      */
  1591.     public static final boolean IS_OS_WINDOWS_95 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " 95");

  1592.     /**
  1593.      * Is {@code true} if this is Windows 98.
  1594.      *
  1595.      * <p>
  1596.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1597.      * </p>
  1598.      * <p>
  1599.      * This value is initialized when the class is loaded.
  1600.      * </p>
  1601.      *
  1602.      * @since 2.0
  1603.      */
  1604.     public static final boolean IS_OS_WINDOWS_98 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " 98");

  1605.     /**
  1606.      * Is {@code true} if this is Windows ME.
  1607.      *
  1608.      * <p>
  1609.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1610.      * </p>
  1611.      * <p>
  1612.      * This value is initialized when the class is loaded.
  1613.      * </p>
  1614.      *
  1615.      * @since 2.0
  1616.      */
  1617.     public static final boolean IS_OS_WINDOWS_ME = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " Me");

  1618.     /**
  1619.      * Is {@code true} if this is Windows NT.
  1620.      *
  1621.      * <p>
  1622.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1623.      * </p>
  1624.      * <p>
  1625.      * This value is initialized when the class is loaded.
  1626.      * </p>
  1627.      *
  1628.      * @since 2.0
  1629.      */
  1630.     public static final boolean IS_OS_WINDOWS_NT = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " NT");

  1631.     /**
  1632.      * Is {@code true} if this is Windows XP.
  1633.      *
  1634.      * <p>
  1635.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1636.      * </p>
  1637.      * <p>
  1638.      * This value is initialized when the class is loaded.
  1639.      * </p>
  1640.      *
  1641.      * @since 2.0
  1642.      */
  1643.     public static final boolean IS_OS_WINDOWS_XP = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " XP");

  1644.     /**
  1645.      * Is {@code true} if this is Windows Vista.
  1646.      *
  1647.      * <p>
  1648.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1649.      * </p>
  1650.      * <p>
  1651.      * This value is initialized when the class is loaded.
  1652.      * </p>
  1653.      *
  1654.      * @since 2.4
  1655.      */
  1656.     public static final boolean IS_OS_WINDOWS_VISTA = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " Vista");

  1657.     /**
  1658.      * Is {@code true} if this is Windows 7.
  1659.      *
  1660.      * <p>
  1661.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1662.      * </p>
  1663.      * <p>
  1664.      * This value is initialized when the class is loaded.
  1665.      * </p>
  1666.      *
  1667.      * @since 3.0
  1668.      */
  1669.     public static final boolean IS_OS_WINDOWS_7 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " 7");

  1670.     /**
  1671.      * Is {@code true} if this is Windows 8.
  1672.      *
  1673.      * <p>
  1674.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1675.      * </p>
  1676.      * <p>
  1677.      * This value is initialized when the class is loaded.
  1678.      * </p>
  1679.      *
  1680.      * @since 3.2
  1681.      */
  1682.     public static final boolean IS_OS_WINDOWS_8 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " 8");

  1683.     /**
  1684.      * Is {@code true} if this is Windows 10.
  1685.      *
  1686.      * <p>
  1687.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1688.      * </p>
  1689.      * <p>
  1690.      * This value is initialized when the class is loaded.
  1691.      * </p>
  1692.      *
  1693.      * @since 3.5
  1694.      */
  1695.     public static final boolean IS_OS_WINDOWS_10 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " 10");

  1696.     /**
  1697.      * Is {@code true} if this is Windows 11.
  1698.      *
  1699.      * <p>
  1700.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1701.      * </p>
  1702.      * <p>
  1703.      * OpenJDK fixed the return value for {@code os.name} on Windows 11 to versions 8, 11, and 17:
  1704.      * </p>
  1705.      * <ul>
  1706.      * <li>Affects Java versions 7u321, 8u311, 11.0.13-oracle, 17.0.1: https://bugs.openjdk.org/browse/JDK-8274737</li>
  1707.      * <li>Fixed in OpenJDK commit https://github.com/openjdk/jdk/commit/97ea9dd2f24f9f1fb9b9345a4202a825ee28e014</li>
  1708.      * </ul>
  1709.      * <p>
  1710.      * This value is initialized when the class is loaded.
  1711.      * </p>
  1712.      *
  1713.      * @since 3.13.0
  1714.      */
  1715.     public static final boolean IS_OS_WINDOWS_11 = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " 11");

  1716.     /**
  1717.      * Is {@code true} if this is z/OS.
  1718.      *
  1719.      * <p>
  1720.      * The field will return {@code false} if {@code OS_NAME} is {@code null}.
  1721.      * </p>
  1722.      * <p>
  1723.      * This value is initialized when the class is loaded.
  1724.      * </p>
  1725.      *
  1726.      * @since 3.5
  1727.      */
  1728.     // Values on a z/OS system I tested (Gary Gregory - 2016-03-12)
  1729.     // os.arch = s390x
  1730.     // os.encoding = ISO8859_1
  1731.     // os.name = z/OS
  1732.     // os.version = 02.02.00
  1733.     public static final boolean IS_OS_ZOS = getOsMatchesName("z/OS");

  1734.     /**
  1735.      * The System property key for the user home directory.
  1736.      */
  1737.     public static final String USER_HOME_KEY = "user.home";

  1738.     /**
  1739.      * The System property key for the user name.
  1740.      *
  1741.      * @deprecated Use {@link SystemProperties#USER_NAME}.
  1742.      */
  1743.     @Deprecated
  1744.     public static final String USER_NAME_KEY = "user.name";

  1745.     /**
  1746.      * The System property key for the user directory.
  1747.      *
  1748.      * @deprecated Use {@link SystemProperties#USER_DIR}.
  1749.      */
  1750.     @Deprecated
  1751.     public static final String USER_DIR_KEY = "user.dir";

  1752.     /**
  1753.      * The System property key for the Java IO temporary directory.
  1754.      *
  1755.      * @deprecated Use {@link SystemProperties#JAVA_IO_TMPDIR}.
  1756.      */
  1757.     @Deprecated
  1758.     public static final String JAVA_IO_TMPDIR_KEY = "java.io.tmpdir";

  1759.     /**
  1760.      * The System property key for the Java home directory.
  1761.      *
  1762.      * @deprecated Use {@link SystemProperties#JAVA_HOME}.
  1763.      */
  1764.     @Deprecated
  1765.     public static final String JAVA_HOME_KEY = "java.home";

  1766.     /**
  1767.      * The {@code awt.toolkit} System Property.
  1768.      *
  1769.      * <p>
  1770.      * Holds a class name, on Windows XP this is {@code sun.awt.windows.WToolkit}.
  1771.      * </p>
  1772.      * <p>
  1773.      * <b>On platforms without a GUI, this value is {@code null}.</b>
  1774.      * </p>
  1775.      * <p>
  1776.      * Defaults to {@code null} if the runtime does not have security access to read this property or the property does
  1777.      * not exist.
  1778.      * </p>
  1779.      * <p>
  1780.      * This value is initialized when the class is loaded. If {@link System#setProperty(String,String)} or
  1781.      * {@link System#setProperties(java.util.Properties)} is called after this class is loaded, the value will be out of
  1782.      * sync with that System property.
  1783.      * </p>
  1784.      *
  1785.      * @since 2.1
  1786.      * @see SystemProperties#getAwtToolkit()
  1787.      */
  1788.     public static final String AWT_TOOLKIT = SystemProperties.getAwtToolkit();

  1789.     /**
  1790.      * Gets an environment variable, defaulting to {@code defaultValue} if the variable cannot be read.
  1791.      *
  1792.      * <p>
  1793.      * If a {@link SecurityException} is caught, the return value is {@code defaultValue} and a message is written to
  1794.      * {@code System.err}.
  1795.      * </p>
  1796.      *
  1797.      * @param name
  1798.      *            the environment variable name
  1799.      * @param defaultValue
  1800.      *            the default value
  1801.      * @return the environment variable value or {@code defaultValue} if a security problem occurs
  1802.      * @since 3.8
  1803.      */
  1804.     public static String getEnvironmentVariable(final String name, final String defaultValue) {
  1805.         try {
  1806.             final String value = System.getenv(name);
  1807.             return value == null ? defaultValue : value;
  1808.         } catch (final SecurityException ex) {
  1809.             // we are not allowed to look at this property
  1810.             // System.err.println("Caught a SecurityException reading the environment variable '" + name + "'.");
  1811.             return defaultValue;
  1812.         }
  1813.     }

  1814.     /**
  1815.      * Gets the host name from an environment variable
  1816.      * (COMPUTERNAME on Windows, HOSTNAME elsewhere).
  1817.      *
  1818.      * <p>
  1819.      * If you want to know what the network stack says is the host name, you should use {@code InetAddress.getLocalHost().getHostName()}.
  1820.      * </p>
  1821.      *
  1822.      * @return the host name. Will be {@code null} if the environment variable is not defined.
  1823.      * @since 3.6
  1824.      */
  1825.     public static String getHostName() {
  1826.         return IS_OS_WINDOWS ? System.getenv("COMPUTERNAME") : System.getenv("HOSTNAME");
  1827.     }

  1828.     /**
  1829.      * Gets the current Java home directory as a {@link File}.
  1830.      *
  1831.      * @return a directory
  1832.      * @throws SecurityException if a security manager exists and its {@code checkPropertyAccess} method doesn't allow
  1833.      * access to the specified system property.
  1834.      * @see SystemProperties#getJavaHome()
  1835.      * @since 2.1
  1836.      */
  1837.     public static File getJavaHome() {
  1838.         return new File(SystemProperties.getJavaHome());
  1839.     }

  1840.     /**
  1841.      * Gets the current Java IO temporary directory as a {@link File}.
  1842.      *
  1843.      * @return a directory
  1844.      * @throws SecurityException if a security manager exists and its {@code checkPropertyAccess} method doesn't allow
  1845.      * access to the specified system property.
  1846.      * @see SystemProperties#getJavaIoTmpdir()
  1847.      * @since 2.1
  1848.      */
  1849.     public static File getJavaIoTmpDir() {
  1850.         return new File(SystemProperties.getJavaIoTmpdir());
  1851.     }

  1852.     /**
  1853.      * Decides if the Java version matches.
  1854.      *
  1855.      * @param versionPrefix the prefix for the Java version
  1856.      * @return true if matches, or false if not or can't determine
  1857.      */
  1858.     private static boolean getJavaVersionMatches(final String versionPrefix) {
  1859.         return isJavaVersionMatch(JAVA_SPECIFICATION_VERSION, versionPrefix);
  1860.     }

  1861.     /**
  1862.      * Decides if the operating system matches.
  1863.      *
  1864.      * @param osNamePrefix the prefix for the OS name
  1865.      * @param osVersionPrefix the prefix for the version
  1866.      * @return true if matches, or false if not or can't determine
  1867.      */
  1868.     private static boolean getOsMatches(final String osNamePrefix, final String osVersionPrefix) {
  1869.         return isOsMatch(OS_NAME, OS_VERSION, osNamePrefix, osVersionPrefix);
  1870.     }

  1871.     /**
  1872.      * Decides if the operating system matches.
  1873.      *
  1874.      * @param osNamePrefix the prefix for the OS name
  1875.      * @return true if matches, or false if not or can't determine
  1876.      */
  1877.     private static boolean getOsMatchesName(final String osNamePrefix) {
  1878.         return isOsNameMatch(OS_NAME, osNamePrefix);
  1879.     }

  1880.     /**
  1881.      * Gets the current user directory as a {@link File}.
  1882.      *
  1883.      * @return a directory
  1884.      * @throws SecurityException if a security manager exists and its {@code checkPropertyAccess} method doesn't allow
  1885.      * access to the specified system property.
  1886.      * @see SystemProperties#getUserDir()
  1887.      * @since 2.1
  1888.      */
  1889.     public static File getUserDir() {
  1890.         return new File(SystemProperties.getUserDir());
  1891.     }

  1892.     /**
  1893.      * Gets the current user home directory as a {@link File}.
  1894.      *
  1895.      * @return a directory
  1896.      * @throws SecurityException if a security manager exists and its {@code checkPropertyAccess} method doesn't allow
  1897.      * access to the specified system property.
  1898.      * @see SystemProperties#getUserHome()
  1899.      * @since 2.1
  1900.      */
  1901.     public static File getUserHome() {
  1902.         return new File(SystemProperties.getUserHome());
  1903.     }

  1904.     /**
  1905.      * Gets the current user name.
  1906.      *
  1907.      * @return a name
  1908.      * @throws SecurityException if a security manager exists and its {@code checkPropertyAccess} method doesn't allow
  1909.      * access to the specified system property.
  1910.      * @see SystemProperties#getUserName()
  1911.      * @since 3.10
  1912.      * @deprecated Use {@link SystemProperties#getUserName()}.
  1913.      */
  1914.     @Deprecated
  1915.     public static String getUserName() {
  1916.         return SystemProperties.getUserName();
  1917.     }

  1918.     /**
  1919.      * Gets the user name.
  1920.      *
  1921.      * @param defaultValue A default value.
  1922.      * @return a name
  1923.      * @throws SecurityException if a security manager exists and its {@code checkPropertyAccess} method doesn't allow
  1924.      * access to the specified system property.
  1925.      * @see SystemProperties#getUserName()
  1926.      * @since 3.10
  1927.      * @deprecated Use {@link SystemProperties#getUserName(String)}.
  1928.      */
  1929.     @Deprecated
  1930.     public static String getUserName(final String defaultValue) {
  1931.         return SystemProperties.getUserName(defaultValue);
  1932.     }

  1933.     /**
  1934.      * Returns whether the {@link #JAVA_AWT_HEADLESS} value is {@code true}.
  1935.      *
  1936.      * @return {@code true} if {@code JAVA_AWT_HEADLESS} is {@code "true"}, {@code false} otherwise.
  1937.      * @see #JAVA_AWT_HEADLESS
  1938.      * @since 2.1
  1939.      * @since Java 1.4
  1940.      */
  1941.     public static boolean isJavaAwtHeadless() {
  1942.         return Boolean.TRUE.toString().equals(JAVA_AWT_HEADLESS);
  1943.     }

  1944.     /**
  1945.      * Is the Java version at least the requested version.
  1946.      *
  1947.      * @param requiredVersion the required version, for example 1.31f
  1948.      * @return {@code true} if the actual version is equal or greater than the required version
  1949.      */
  1950.     public static boolean isJavaVersionAtLeast(final JavaVersion requiredVersion) {
  1951.         return JAVA_SPECIFICATION_VERSION_AS_ENUM.atLeast(requiredVersion);
  1952.     }

  1953.     /**
  1954.      * Is the Java version at most the requested version.
  1955.      *
  1956.      * <p>
  1957.      * Example input:
  1958.      * </p>
  1959.      *
  1960.      * @param requiredVersion the required version, for example 1.31f
  1961.      * @return {@code true} if the actual version is equal or less than the required version
  1962.      * @since 3.9
  1963.      */
  1964.     public static boolean isJavaVersionAtMost(final JavaVersion requiredVersion) {
  1965.         return JAVA_SPECIFICATION_VERSION_AS_ENUM.atMost(requiredVersion);
  1966.     }

  1967.     /**
  1968.      * Decides if the Java version matches.
  1969.      *
  1970.      * <p>
  1971.      * This method is package private instead of private to support unit test invocation.
  1972.      * </p>
  1973.      *
  1974.      * @param version the actual Java version
  1975.      * @param versionPrefix the prefix for the expected Java version
  1976.      * @return true if matches, or false if not or can't determine
  1977.      */
  1978.     static boolean isJavaVersionMatch(final String version, final String versionPrefix) {
  1979.         if (version == null) {
  1980.             return false;
  1981.         }
  1982.         return version.startsWith(versionPrefix);
  1983.     }

  1984.     /**
  1985.      * Decides if the operating system matches.
  1986.      * <p>
  1987.      * This method is package private instead of private to support unit test invocation.
  1988.      * </p>
  1989.      *
  1990.      * @param osName the actual OS name
  1991.      * @param osVersion the actual OS version
  1992.      * @param osNamePrefix the prefix for the expected OS name
  1993.      * @param osVersionPrefix the prefix for the expected OS version
  1994.      * @return true if matches, or false if not or can't determine
  1995.      */
  1996.     static boolean isOsMatch(final String osName, final String osVersion, final String osNamePrefix, final String osVersionPrefix) {
  1997.         if (osName == null || osVersion == null) {
  1998.             return false;
  1999.         }
  2000.         return isOsNameMatch(osName, osNamePrefix) && isOsVersionMatch(osVersion, osVersionPrefix);
  2001.     }

  2002.     /**
  2003.      * Decides if the operating system matches.
  2004.      * <p>
  2005.      * This method is package private instead of private to support unit test invocation.
  2006.      * </p>
  2007.      *
  2008.      * @param osName the actual OS name
  2009.      * @param osNamePrefix the prefix for the expected OS name
  2010.      * @return true if matches, or false if not or can't determine
  2011.      */
  2012.     static boolean isOsNameMatch(final String osName, final String osNamePrefix) {
  2013.         if (osName == null) {
  2014.             return false;
  2015.         }
  2016.         return osName.startsWith(osNamePrefix);
  2017.     }

  2018.     /**
  2019.      * Decides if the operating system version matches.
  2020.      * <p>
  2021.      * This method is package private instead of private to support unit test invocation.
  2022.      * </p>
  2023.      *
  2024.      * @param osVersion the actual OS version
  2025.      * @param osVersionPrefix the prefix for the expected OS version
  2026.      * @return true if matches, or false if not or can't determine
  2027.      */
  2028.     static boolean isOsVersionMatch(final String osVersion, final String osVersionPrefix) {
  2029.         if (StringUtils.isEmpty(osVersion)) {
  2030.             return false;
  2031.         }
  2032.         // Compare parts of the version string instead of using String.startsWith(String) because otherwise
  2033.         // osVersionPrefix 10.1 would also match osVersion 10.10
  2034.         final String[] versionPrefixParts = JavaVersion.split(osVersionPrefix);
  2035.         final String[] versionParts = JavaVersion.split(osVersion);
  2036.         for (int i = 0; i < Math.min(versionPrefixParts.length, versionParts.length); i++) {
  2037.             if (!versionPrefixParts[i].equals(versionParts[i])) {
  2038.                 return false;
  2039.             }
  2040.         }
  2041.         return true;
  2042.     }

  2043.     /**
  2044.      * SystemUtils instances should NOT be constructed in standard programming. Instead, the class should be used as
  2045.      * {@code SystemUtils.FILE_SEPARATOR}.
  2046.      *
  2047.      * <p>
  2048.      * This constructor is public to permit tools that require a JavaBean instance to operate.
  2049.      * </p>
  2050.      */
  2051.     public SystemUtils() {
  2052.     }

  2053. }