Enum Class CliTypeTable

java.lang.Object
java.lang.Enum<CliTypeTable>
ghidra.app.util.bin.format.pe.cli.tables.CliTypeTable
All Implemented Interfaces:
Serializable, Comparable<CliTypeTable>, Constable

public enum CliTypeTable extends Enum<CliTypeTable>
Possible Metadata table types.
  • Enum Constant Details

  • Method Details

    • values

      public static CliTypeTable[] 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 CliTypeTable 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
    • id

      public int id()
      Gets the ID associated with this table type.
      Returns:
      The ID associated with this table type.
    • fromId

      public static CliTypeTable fromId(int id)
      Gets a table type from the given ID.
      Parameters:
      id - The ID of the table type to get.
      Returns:
      A table type with the given ID, or null if one doesn't exist.