mirror of
https://github.com/stleary/JSON-java.git
synced 2026-05-18 00:00:50 -04:00
10 lines
121 B
Java
10 lines
121 B
Java
package org.json;
|
|
|
|
public interface None {
|
|
/**
|
|
* Negative One
|
|
*/
|
|
public static final int none = -1;
|
|
|
|
}
|