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-exec.git
commit 44dcea9c6f1b5655ed96c65628843f79ae15984c Author: Gary D. Gregory <[email protected]> AuthorDate: Sat May 24 09:32:52 2025 -0400 Javadoc --- src/main/java/org/apache/commons/exec/OS.java | 35 ++++++++++++++++++--------- 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/src/main/java/org/apache/commons/exec/OS.java b/src/main/java/org/apache/commons/exec/OS.java index f7e3c7c9..9d6a803b 100644 --- a/src/main/java/org/apache/commons/exec/OS.java +++ b/src/main/java/org/apache/commons/exec/OS.java @@ -30,51 +30,62 @@ import java.util.Locale; public final class OS { /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_9X = "win9x"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_DOS = "dos"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_MAC = "mac"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_NETWARE = "netware"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_NT = "winnt"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_OS2 = "os/2"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_OS400 = "os/400"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_TANDEM = "tandem"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_UNIX = "unix"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_VMS = "openvms"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_WINDOWS = "windows"; + /** - * OS family that can be tested for. {@value} + * OS family name to test: {@value} */ public static final String FAMILY_ZOS = "z/os";
