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 46f7bd8 commit 5438abf
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
*/
public final class ZipEightByteInteger implements Serializable {

/**
* The number of bytes used to represent an instance in binary form.
*/
static final int BYTES = 8;

private static final long serialVersionUID = 1L;
Expand Down Expand Up @@ -112,6 +115,10 @@ static BigInteger toUnsignedBigInteger(final long value) {
}
return BigInteger.valueOf(value & Long.MAX_VALUE).add(HIGHEST_BIT);
}

/**
* The value is treated as unsigned.
*/
private final long value;

/**
Expand Down

0 comments on commit 5438abf

Please sign in to comment.