mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
JSONzip value
This commit is contained in:
parent
b7a1aee4e1
commit
48d31b7f5c
3 changed files with 22 additions and 12 deletions
|
@ -44,7 +44,7 @@ package org.json.zip;
|
|||
* ADEQUATELY FOR PRODUCTION USE.
|
||||
*
|
||||
* @author JSON.org
|
||||
* @version 2014-04-21
|
||||
* @version 2014-04-28
|
||||
*/
|
||||
public abstract class JSONzip implements None, PostMortem {
|
||||
/**
|
||||
|
@ -63,19 +63,19 @@ public abstract class JSONzip implements None, PostMortem {
|
|||
};
|
||||
|
||||
/**
|
||||
* The number of integers that can be encoded in 4 bits.
|
||||
* The first positive integer than cannot be encoded in 4 bits.
|
||||
*/
|
||||
public static final long int4 = 16;
|
||||
|
||||
/**
|
||||
* The number of integers that can be encoded in 7 bits.
|
||||
* The first positive integer than cannot be encoded in 7 bits.
|
||||
*/
|
||||
public static final long int7 = 128;
|
||||
public static final long int7 = 144;
|
||||
|
||||
/**
|
||||
* The number of integers that can be encoded in 14 bits.
|
||||
* The first positive integer than cannot be encoded in 14 bits.
|
||||
*/
|
||||
public static final long int14 = 16384;
|
||||
public static final long int14 = 16528;
|
||||
|
||||
/**
|
||||
* The end of string code.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue