Class TableEntry<T>

java.lang.Object
ghidra.app.plugin.assembler.sleigh.util.TableEntryKey
ghidra.app.plugin.assembler.sleigh.util.TableEntry<T>
Type Parameters:
T - the type of each entry in a table cell
All Implemented Interfaces:
Comparable<TableEntryKey>

public class TableEntry<T> extends TableEntryKey
An entry in a (sparse) LR(0) transition table or LALR(1) action/goto table
See Also:
  • Constructor Details

    • TableEntry

      public TableEntry(int state, AssemblySymbol sym, T value)
      Create a new table entry with the given value at the given state and symbol
      Parameters:
      state - the row
      sym - the column
      value - the value
  • Method Details

    • getValue

      public T getValue()
      Get the value of the entry
      Returns:
      the value