mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 16:00:51 -07:00
9 lines
121 B
Java
9 lines
121 B
Java
package org.json;
|
|
|
|
public interface None {
|
|
/**
|
|
* Negative One
|
|
*/
|
|
public static final int none = -1;
|
|
|
|
}
|