This commit is contained in:
Douglas Crockford
2013-04-19 14:04:06 -07:00
parent 327e9a56fd
commit 0cdef7d816
14 changed files with 2706 additions and 0 deletions

15
zip/None.java Normal file
View File

@@ -0,0 +1,15 @@
package org.json.zip;
/**
* None is an interface that makes the constant <i>none</i> (short for
* negative one or long for -1) available to any class that implements it.
* The none value is used to stand for an integer that is not an integer,
* such as the negative result of a search.
*/
public interface None {
/**
* Negative One.
*/
public static final int none = -1;
}