Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 26, 2024
1 parent d9939e8 commit 88927a2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@
* @since 1.2
*/
public final class ZipEightByteInteger implements Serializable {

private static final long serialVersionUID = 1L;

/**
* Constant for a value of zero.
*/
public static final ZipEightByteInteger ZERO = new ZipEightByteInteger(0);

private static final BigInteger HIGHEST_BIT = BigInteger.ONE.shiftLeft(63);
Expand Down

0 comments on commit 88927a2

Please sign in to comment.