Back to project page journal.
The source code is released under:
MIT License
If you think the Android project journal 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 cochrane343.journal; // w w w. j a v a 2 s . com /** * Definition of application wide constants * * @author cochrane343 * @since 1.0 */ public final class Constants { public static final String LOGGING_TAG = Constants.class.getPackage().getName(); /** * The enum for the different modes of displaying expenses */ public static enum DisplayMode { /** * Displaying the cumulative totals of all categories */ CATEGORY_OVERVIEW, /** * Displaying the expenses of a specific category */ SINGLE_CATEGORY } public static final long NO_CATEGORY = -1; /** * Private constructor to prevent instantiation */ private Constants() { // No-op } }