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:
java.lang.Comparable<TableEntryKey>
public class TableEntry<T> extends TableEntryKey
An entry in a (sparse) LR(0) transition table or LALR(1) action/goto table
-
-
Constructor Summary
Constructors Constructor Description TableEntry(int state, AssemblySymbol sym, T value)
Create a new table entry with the given value at the given state and symbol
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getValue()
Get the value of the entry
-
-
-
Constructor Detail
-
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 rowsym
- the columnvalue
- the value
-
-
Method Detail
-
getValue
public T getValue()
Get the value of the entry- Returns:
- the value
-
-