Back to project page FoodFinderApp.
The source code is released under:
GNU General Public License
If you think the Android project FoodFinderApp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.json.zip; //w w w. ja va2s . co m /** * 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; }