Enum DebugInfoOptions
- java.lang.Object
-
- java.lang.Enum<DebugInfoOptions>
-
- com.zerog.ia.auto.project.actions.DebugInfoOptions
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DebugInfoOptions>
public enum DebugInfoOptions extends java.lang.Enum<DebugInfoOptions>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPONENT_TREEIA_VARIABLESJAVA_PROPERTIESMAGIC_FOLDERPOSTINSTALL_ACTIONSPOSTUNINSTALL_ACTIONSPREINSTALL_ACTIONSPREUNINSTALL_ACTIONSVISUAL_TREE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()The integer value the Enum representsjava.lang.StringtoString()The string value the Enum representsstatic DebugInfoOptionsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DebugInfoOptions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IA_VARIABLES
public static final DebugInfoOptions IA_VARIABLES
-
MAGIC_FOLDER
public static final DebugInfoOptions MAGIC_FOLDER
-
JAVA_PROPERTIES
public static final DebugInfoOptions JAVA_PROPERTIES
-
VISUAL_TREE
public static final DebugInfoOptions VISUAL_TREE
-
COMPONENT_TREE
public static final DebugInfoOptions COMPONENT_TREE
-
PREINSTALL_ACTIONS
public static final DebugInfoOptions PREINSTALL_ACTIONS
-
POSTINSTALL_ACTIONS
public static final DebugInfoOptions POSTINSTALL_ACTIONS
-
PREUNINSTALL_ACTIONS
public static final DebugInfoOptions PREUNINSTALL_ACTIONS
-
POSTUNINSTALL_ACTIONS
public static final DebugInfoOptions POSTUNINSTALL_ACTIONS
-
-
Method Detail
-
values
public static DebugInfoOptions[] 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 (DebugInfoOptions c : DebugInfoOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DebugInfoOptions valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
The integer value the Enum represents
-
toString
public java.lang.String toString()
The string value the Enum represents- Overrides:
toStringin classjava.lang.Enum<DebugInfoOptions>
-
-