Package ghidra.util

Enum Class SignednessFormatMode

java.lang.Object
java.lang.Enum<SignednessFormatMode>
ghidra.util.SignednessFormatMode
All Implemented Interfaces:
Serializable, Comparable<SignednessFormatMode>, Constable

public enum SignednessFormatMode extends Enum<SignednessFormatMode>
Defines how the sign of integer-type numbers is to be interpreted for rendering.
  • Enum Constant Details Link icon

    • DEFAULT Link icon

      public static final SignednessFormatMode DEFAULT
      Values to be rendered in binary, octal, or hexadecimal bases are rendered as unsigned; numbers rendered in decimal are rendered as signed.
    • UNSIGNED Link icon

      public static final SignednessFormatMode UNSIGNED
      All values are rendered in their unsigned form
    • SIGNED Link icon

      public static final SignednessFormatMode SIGNED
      All values are rendered in their signed form
  • Method Details Link icon

    • values Link icon

      public static SignednessFormatMode[] 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 Link icon

      public static SignednessFormatMode 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
    • parse Link icon

      public static SignednessFormatMode parse(int value)