Enum Class VTMarkupItemConsideredStatus

java.lang.Object
java.lang.Enum<VTMarkupItemConsideredStatus>
ghidra.feature.vt.api.main.VTMarkupItemConsideredStatus
All Implemented Interfaces:
Serializable, Comparable<VTMarkupItemConsideredStatus>, Constable

public enum VTMarkupItemConsideredStatus extends Enum<VTMarkupItemConsideredStatus>
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:
  • Enum Constant Details

    • UNCONSIDERED

      public static final VTMarkupItemConsideredStatus 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

      public static final VTMarkupItemConsideredStatus 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

      public static final VTMarkupItemConsideredStatus IGNORE_DONT_CARE
      Indicates that a markup item should be ignored because the user doesn't care if it should be applied.
    • REJECT

      public static final VTMarkupItemConsideredStatus REJECT
      Indicates that the markup item should not be applied.
  • Method Details

    • values

      public static VTMarkupItemConsideredStatus[] 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

      public static VTMarkupItemConsideredStatus valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getMarkupItemStatus

      public VTMarkupItemStatus getMarkupItemStatus()
      The status applied to the markup item when VTMarkupItem.setConsidered(VTMarkupItemConsideredStatus) is called.