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-compress.git
The following commit(s) were added to refs/heads/master by this push: new cafd3574 Javadoc cafd3574 is described below commit cafd3574e2f67f4d9b085ec9e44392d9751a803d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Oct 28 08:38:21 2023 -0400 Javadoc --- .../compress/archivers/arj/ArjArchiveEntry.java | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.java b/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.java index 4d349588..853f42d9 100644 --- a/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.java +++ b/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.java @@ -29,21 +29,70 @@ import org.apache.commons.compress.archivers.zip.ZipUtil; * @since 1.6 */ public class ArjArchiveEntry implements ArchiveEntry { + /** * The known values for HostOs. */ public static class HostOs { + + /** + * {@value} + */ public static final int DOS = 0; + + /** + * {@value} + */ public static final int PRIMOS = 1; + + /** + * {@value} + */ public static final int UNIX = 2; + + /** + * {@value} + */ public static final int AMIGA = 3; + + /** + * {@value} + */ public static final int MAC_OS = 4; + + /** + * {@value} + */ public static final int OS_2 = 5; + + /** + * {@value} + */ public static final int APPLE_GS = 6; + + /** + * {@value} + */ public static final int ATARI_ST = 7; + + /** + * {@value} + */ public static final int NEXT = 8; + + /** + * {@value} + */ public static final int VAX_VMS = 9; + + /** + * {@value} + */ public static final int WIN95 = 10; + + /** + * {@value} + */ public static final int WIN32 = 11; }