mirror of
https://github.com/fankes/JSON-java-compat.git
synced 2025-09-07 19:14:15 +08:00
JSONzip
This commit is contained in:
15
zip/None.java
Normal file
15
zip/None.java
Normal 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;
|
||||
|
||||
}
|
Reference in New Issue
Block a user