Bump date.
[SquirrelJME.git] / modules / meep-swm / src / main / java / javax / microedition / swm / SuiteStateFlag.java
blob4949373dc32e26297a8ab8175e90e2fb3bc5dd48
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package javax.microedition.swm;
12 import cc.squirreljme.runtime.cldc.annotation.Api;
14 /**
15 * This represents a flag which may be associated with a suite.
17 * @since 2016/06/24
19 @Api
20 public enum SuiteStateFlag
22 /** Available. */
23 @Api
24 AVAILABLE,
26 /** Enabled, the application or library may be used. */
27 @Api
28 ENABLED,
30 /** The application or library is pre-installed with the system. */
31 @Api
32 PREINSTALLED,
34 /** Remove is not supported. */
35 @Api
36 REMOVE_DENIED,
38 /** A suite provided by the system. */
39 @Api
40 SYSTEM,
42 /** The suite cannot be updated. */
43 @Api
44 UPDATE_DENIED,
46 /** End. */