at.tuwien.ifs.somtoolbox.apps
Enum SOMToolboxApp.Type

java.lang.Object
  extended by java.lang.Enum<SOMToolboxApp.Type>
      extended by at.tuwien.ifs.somtoolbox.apps.SOMToolboxApp.Type
All Implemented Interfaces:
Serializable, Comparable<SOMToolboxApp.Type>
Enclosing interface:
SOMToolboxApp

public static enum SOMToolboxApp.Type
extends Enum<SOMToolboxApp.Type>

This enum lists the known application types.

Version:
$Id: SOMToolboxApp.java 3695 2010-07-16 13:05:16Z frank $
Author:
Jakob Frank

Enum Constant Summary
Helper
          Other useful stuff.
Other
          Everything else, the default value.
Training
          Main-Classes marked with Training are used to create new SOMs, etc...
Utils
          Utils are apps that useful but are not part of the core features, such as FileFormatConverter, MnemonicSOMGenerator, etc...
Viewer
          Main-Classes marked with Viewer indicate Applications to view data.
 
Method Summary
static SOMToolboxApp.Type getType(Class<? extends SOMToolboxApp> c)
           
static SOMToolboxApp.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SOMToolboxApp.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Training

public static final SOMToolboxApp.Type Training
Main-Classes marked with Training are used to create new SOMs, etc...


Viewer

public static final SOMToolboxApp.Type Viewer
Main-Classes marked with Viewer indicate Applications to view data. SOMs, InputData, etc...


Utils

public static final SOMToolboxApp.Type Utils
Utils are apps that useful but are not part of the core features, such as FileFormatConverter, MnemonicSOMGenerator, etc...


Helper

public static final SOMToolboxApp.Type Helper
Other useful stuff.


Other

public static final SOMToolboxApp.Type Other
Everything else, the default value.

Method Detail

values

public static SOMToolboxApp.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SOMToolboxApp.Type c : SOMToolboxApp.Type.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SOMToolboxApp.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getType

public static SOMToolboxApp.Type getType(Class<? extends SOMToolboxApp> c)