Enum Class GoFuncDataTable

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

public enum GoFuncDataTable extends Enum<GoFuncDataTable>
An index into a GoFuncData's variable-size funcdata array. See GoFuncData's nfuncdata for actual array size.
  • Enum Constant Details

    • FUNCDATA_ArgsPointerMaps

      public static final GoFuncDataTable FUNCDATA_ArgsPointerMaps
    • FUNCDATA_LocalsPointerMaps

      public static final GoFuncDataTable FUNCDATA_LocalsPointerMaps
    • FUNCDATA_StackObjects

      public static final GoFuncDataTable FUNCDATA_StackObjects
    • FUNCDATA_InlTree

      public static final GoFuncDataTable FUNCDATA_InlTree
    • FUNCDATA_OpenCodedDeferInfo

      public static final GoFuncDataTable FUNCDATA_OpenCodedDeferInfo
    • FUNCDATA_ArgInfo

      public static final GoFuncDataTable FUNCDATA_ArgInfo
    • FUNCDATA_ArgLiveInfo

      public static final GoFuncDataTable FUNCDATA_ArgLiveInfo
    • FUNCDATA_WrapInfo

      public static final GoFuncDataTable FUNCDATA_WrapInfo
  • Method Details

    • values

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