SquirrelJME/SquirrelJME

View on GitHub
modules/meep-midlet/src/main/java/cc/squirreljme/runtime/midlet/ApplicationType.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// Multi-Phasic Applications: SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package cc.squirreljme.runtime.midlet;

/**
 * Represents the type of application one is.
 *
 * @since 2022/07/21
 */
public enum ApplicationType
{
    /** Standard Java MIDlet. */
    MIDLET,
    
    /** NTT Docomo DoJa. */
    NTT_DOCOMO_DOJA,
    
    /** NTT Docomo Star. */
    NTT_DOCOMO_STAR,
    
    /* End. */
    ;
}