Package ghidra.framework.data
Enum Class LinkHandler.LinkStatus
- All Implemented Interfaces:
Serializable,Comparable<LinkHandler.LinkStatus>,Constable
- Enclosing class:
LinkHandler<T extends DomainObjectAdapterDB>
LinkHandler.LinkStatus provides a link evaluation for its ulimate type or if it is
considered broken. See LinkHandler.getLinkFileStatus(DomainFile, Consumer).-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe link-file specified does not refer to a valid file or content-type.The link-file ultimately refers to an external project/repository path with a Ghidra URL.The link-file ultimately refers to a file or folder path within the same project.The specified file is not a link-file -
Method Summary
Modifier and TypeMethodDescriptionstatic LinkHandler.LinkStatusReturns the enum constant of this class with the specified name.static LinkHandler.LinkStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BROKEN
The link-file specified does not refer to a valid file or content-type. -
INTERNAL
The link-file ultimately refers to a file or folder path within the same project. -
EXTERNAL
The link-file ultimately refers to an external project/repository path with a Ghidra URL. -
NON_LINK
The specified file is not a link-file
-
-
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
-