Enum Class GoTypeFlag

java.lang.Object
java.lang.Enum<GoTypeFlag>
ghidra.app.util.bin.format.golang.rtti.types.GoTypeFlag
All Implemented Interfaces:
Serializable, Comparable<GoTypeFlag>, Constable

public enum GoTypeFlag extends Enum<GoTypeFlag>
Enum defining the various bitflags held in a GoType's tflag
  • Enum Constant Details

    • Uncommon

      public static final GoTypeFlag Uncommon
    • ExtraStar

      public static final GoTypeFlag ExtraStar
    • Named

      public static final GoTypeFlag Named
    • RegularMemory

      public static final GoTypeFlag RegularMemory
  • Method Details

    • values

      public static GoTypeFlag[] 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 GoTypeFlag 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
    • getValue

      public int getValue()
    • isSet

      public boolean isSet(int i)
    • parseFlags

      public static Set<GoTypeFlag> parseFlags(int b)