mirror of
https://github.com/stleary/JSON-java.git
synced 2025-08-02 11:05:28 -04:00
this.namehuffext.generate
This commit is contained in:
parent
1272d80a03
commit
aab1017e66
@ -44,7 +44,7 @@ package org.json.zip;
|
||||
* ADEQUATELY FOR PRODUCTION USE.
|
||||
*
|
||||
* @author JSON.org
|
||||
* @version 2014-05-03
|
||||
* @version 2014-05-20
|
||||
*/
|
||||
public abstract class JSONzip implements None, PostMortem {
|
||||
/**
|
||||
@ -54,21 +54,6 @@ public abstract class JSONzip implements None, PostMortem {
|
||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.', '-', '+', 'E'
|
||||
};
|
||||
|
||||
/**
|
||||
* The first positive integer than cannot be encoded in 4 bits.
|
||||
*/
|
||||
public static final long int4 = 16;
|
||||
|
||||
/**
|
||||
* The first positive integer than cannot be encoded in 7 bits.
|
||||
*/
|
||||
public static final long int7 = 144;
|
||||
|
||||
/**
|
||||
* The first positive integer than cannot be encoded in 14 bits.
|
||||
*/
|
||||
public static final long int14 = 16528;
|
||||
|
||||
/**
|
||||
* The end of string code.
|
||||
*/
|
||||
@ -79,6 +64,21 @@ public abstract class JSONzip implements None, PostMortem {
|
||||
*/
|
||||
public static final int endOfNumber = bcd.length;
|
||||
|
||||
/**
|
||||
* The first positive integer that cannot be encoded in 4 bits.
|
||||
*/
|
||||
public static final long int4 = 16;
|
||||
|
||||
/**
|
||||
* The first positive integer that cannot be encoded in 7 bits.
|
||||
*/
|
||||
public static final long int7 = 144;
|
||||
|
||||
/**
|
||||
* The first positive integer that cannot be encoded in 14 bits.
|
||||
*/
|
||||
public static final long int14 = 16528;
|
||||
|
||||
/**
|
||||
* The package supports tracing for debugging.
|
||||
*/
|
||||
@ -177,6 +177,7 @@ public abstract class JSONzip implements None, PostMortem {
|
||||
*/
|
||||
protected void generate() {
|
||||
this.namehuff.generate();
|
||||
this.namehuffext.generate();
|
||||
this.stringhuff.generate();
|
||||
this.stringhuffext.generate();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user