Package com.pnfsoftware.jeb.core.output
Enum Class ItemClassIdentifiers
- All Implemented Interfaces:
Serializable
,Comparable<ItemClassIdentifiers>
,Constable
Well-known class identifiers for interactive items.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic ItemClassIdentifiers[]
Retrieve the list of non-deprecated enumerated values.static ItemClassIdentifiers
getById
(int id) Retrieve an item by its unique integer identifier.int
getId()
Retrieve the identifier of a class.static ItemClassIdentifiers
Returns the enum constant of this class with the specified name.static ItemClassIdentifiers[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
-
ARTIFACT
-
INFO_USELESS
-
INFO_DEPRECATED
-
INFO_DEBUG
-
INFO_NORMAL
-
INFO_WARNING
-
INFO_ERROR
-
INFO_DANGEROUS
-
INFO_MALFORMED
-
INFO_CORRUPT
-
TYPE_BYTE
-
TYPE_SHORT
-
TYPE_INTEGER
-
TYPE_LONG
-
TYPE_FLOAT
-
TYPE_DOUBLE
-
COMMENT
-
ADDRESS
-
BYTECODE
-
DIRECTIVE
-
KEYWORD
-
MNEMONIC
-
OPCODE
-
LABEL
-
PARAMETER
-
IDENTIFIER
-
NUMBER
-
CHARACTER
-
STRING
-
CLASS_NAME
-
FIELD_NAME
-
METHOD_NAME
-
EXTERNAL_CLASS_NAME
-
EXTERNAL_FIELD_NAME
-
EXTERNAL_METHOD_NAME
-
PACKAGE_NAME
-
REGISTER
-
IMMEDIATE
-
MNEMONIC_PREFIX
-
ADDRESS_SLACK
-
LABEL_OOR
-
LABEL_ALTERNATE
-
ANNOTATION
-
LAMBDA
-
SEPARATOR
-
CODE_UNKNOWN
-
CODE_INSTRUCTIONS
-
CODE_ROUTINE
-
CODE_DATA
-
CODE_LIBRARY
-
CODE_METADATA
-
CODE_SLACK
-
CODE_STUB
-
MARKUP_ELEMENT
-
MARKUP_ATTRIBUTE_NAME
-
MARKUP_ATTRIBUTE_VALUE
-
MARKUP_TEXT
-
MARKUP_COMMENT
-
MARKUP_ACTIVE
-
MARKUP_OTHER
-
TYPE_PROTOTYPE
-
RESULT_SUCCESS
-
RESULT_ERROR
-
DEBUGGING_PC_LINE
-
STRING_GENERATED
-
FIELD_NAME_GENERATED
-
METHOD_NAME_GENERATED
-
COMMENT_AUTO
-
CODE_ORPHAN
-
CODE_ERRORS
-
NUMBER_GENERATED
-
TYPE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getId
public int getId()Retrieve the identifier of a class.- Returns:
-
getById
Retrieve an item by its unique integer identifier.- Parameters:
id
- the integer id- Returns:
- the corresponding enum constant, null if none
-
currentValues
Retrieve the list of non-deprecated enumerated values. This method is the same asvalues()
except entries annotated @SerDeprecatedEnumField
are not returned.- Returns:
- an array of non-deprecated enumerated entries
-