Mobile Tools for Java
Release 1.0

org.eclipse.mtj.core.model.device.launch.properties
Enum LaunchTemplateProperties

java.lang.Object
  extended by java.lang.Enum<LaunchTemplateProperties>
      extended by org.eclipse.mtj.core.model.device.launch.properties.LaunchTemplateProperties
All Implemented Interfaces:
Serializable, Comparable<LaunchTemplateProperties>

public enum LaunchTemplateProperties
extends Enum<LaunchTemplateProperties>

Since:
0.9.1

Enum Constant Summary
CLASSPATH
           
DEBUGPORT
           
DEVICE
           
EXECUTABLE
           
HEAPSIZE
           
JADFILE
           
OTAURL
           
SECURITYDOMAIN
           
TARGET
           
USERSPECIFIEDARGUMENTS
           
VERBOSE
           
 
Method Summary
 String toString()
           
static LaunchTemplateProperties valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LaunchTemplateProperties[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EXECUTABLE

public static final LaunchTemplateProperties EXECUTABLE

DEVICE

public static final LaunchTemplateProperties DEVICE

DEBUGPORT

public static final LaunchTemplateProperties DEBUGPORT

CLASSPATH

public static final LaunchTemplateProperties CLASSPATH

VERBOSE

public static final LaunchTemplateProperties VERBOSE

HEAPSIZE

public static final LaunchTemplateProperties HEAPSIZE

SECURITYDOMAIN

public static final LaunchTemplateProperties SECURITYDOMAIN

USERSPECIFIEDARGUMENTS

public static final LaunchTemplateProperties USERSPECIFIEDARGUMENTS

JADFILE

public static final LaunchTemplateProperties JADFILE

OTAURL

public static final LaunchTemplateProperties OTAURL

TARGET

public static final LaunchTemplateProperties TARGET
Method Detail

values

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

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

valueOf

public static LaunchTemplateProperties 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

toString

public String toString()
Overrides:
toString in class Enum<LaunchTemplateProperties>

Mobile Tools for Java
Release 1.0