Enum Class GoPcDataTable

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

public enum GoPcDataTable extends Enum<GoPcDataTable>
An index into a GoFuncData's variable-sized pcdata array. See GoFuncData's npcdata field for the actual array size.
  • Enum Constant Details

    • PCDATA_UnsafePoint

      public static final GoPcDataTable PCDATA_UnsafePoint
    • PCDATA_StackMapIndex

      public static final GoPcDataTable PCDATA_StackMapIndex
    • PCDATA_InlTreeIndex

      public static final GoPcDataTable PCDATA_InlTreeIndex
    • PCDATA_ArgLiveIndex

      public static final GoPcDataTable PCDATA_ArgLiveIndex
  • Method Details

    • values

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