org.eclipse.mtj.core.model.device.launch.properties
Enum LaunchTemplateProperties
java.lang.Object
java.lang.Enum<LaunchTemplateProperties>
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
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
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>