Package ghidra.feature.vt.api.main
Enum Class VTMarkupItemConsideredStatus
java.lang.Object
java.lang.Enum<VTMarkupItemConsideredStatus>
ghidra.feature.vt.api.main.VTMarkupItemConsideredStatus
- All Implemented Interfaces:
Serializable
,Comparable<VTMarkupItemConsideredStatus>
,Constable
A status that the user can set on an item to signal that the item has been considered, but not
applied. This is useful for markup items that the user knows are incorrect or doesn't care
about. By setting the considered status of a markup item to one of these values, then
the user can filter out items based upon that status.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates that a markup item should be ignored because the user doesn't care if it should be applied.Indicates that a markup item should be ignored because the user doesn't know if it should be applied.Indicates that the markup item should not be applied.Indicates that a markup item has not been considered. -
Method Summary
Modifier and TypeMethodDescriptionThe status applied to the markup item whenVTMarkupItem.setConsidered(VTMarkupItemConsideredStatus)
is called.static VTMarkupItemConsideredStatus
Returns the enum constant of this class with the specified name.static VTMarkupItemConsideredStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNCONSIDERED
Indicates that a markup item has not been considered. This value exists in order to reset one of the other values in this enum. -
IGNORE_DONT_KNOW
Indicates that a markup item should be ignored because the user doesn't know if it should be applied. -
IGNORE_DONT_CARE
Indicates that a markup item should be ignored because the user doesn't care if it should be applied. -
REJECT
Indicates that the markup item should not be applied.
-
-
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
-
getMarkupItemStatus
The status applied to the markup item whenVTMarkupItem.setConsidered(VTMarkupItemConsideredStatus)
is called.
-