mirror of
https://github.com/fankes/JSON-java-compat.git
synced 2025-09-07 03:06:03 +08: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;
|
|
|
|
}
|