SquirrelJME/SquirrelJME

View on GitHub
modules/launcher/src/main/java/cc/squirreljme/runtime/launcher/ui/SearchOrder.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// 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.launcher.ui;

/**
 * The preferred sort order for applications.
 *
 * @since 2020/12/29
 */
public enum SearchOrder
{
    /** The SquirrelJME Name of the application. */
    SQUIRRELJME_NAME,
    
    /** The display name of the application. */
    DISPLAY_NAME,
    
    /** The suite name of the application. */
    SUITE_NAME,
    
    /** The main class. */
    MAIN_CLASS,
    
    /* End. */
    ;
}