Enum SpecExtensionPanel.Status
- java.lang.Object
-
- java.lang.Enum<SpecExtensionPanel.Status>
-
- ghidra.app.plugin.processors.sleigh.SpecExtensionPanel.Status
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SpecExtensionPanel.Status>
- Enclosing class:
- SpecExtensionPanel
public static enum SpecExtensionPanel.Status extends java.lang.Enum<SpecExtensionPanel.Status>
Status of a particular compiler specification element
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CORE
EXTENSION
EXTENSION_ERROR
EXTENSION_INSTALL
EXTENSION_OVERPENDING
EXTENSION_OVERRIDE
EXTENSION_REMOVE
EXTENSION_REPLACE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpecExtensionPanel.Status
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SpecExtensionPanel.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CORE
public static final SpecExtensionPanel.Status CORE
-
EXTENSION
public static final SpecExtensionPanel.Status EXTENSION
-
EXTENSION_ERROR
public static final SpecExtensionPanel.Status EXTENSION_ERROR
-
EXTENSION_INSTALL
public static final SpecExtensionPanel.Status EXTENSION_INSTALL
-
EXTENSION_REPLACE
public static final SpecExtensionPanel.Status EXTENSION_REPLACE
-
EXTENSION_REMOVE
public static final SpecExtensionPanel.Status EXTENSION_REMOVE
-
EXTENSION_OVERRIDE
public static final SpecExtensionPanel.Status EXTENSION_OVERRIDE
-
EXTENSION_OVERPENDING
public static final SpecExtensionPanel.Status EXTENSION_OVERPENDING
-
-
Method Detail
-
values
public static SpecExtensionPanel.Status[] 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 (SpecExtensionPanel.Status c : SpecExtensionPanel.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpecExtensionPanel.Status 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
-
-