Class SymbolTable.Entry

java.lang.Object
org.apache.sling.scripting.jsp.jasper.xmlparser.SymbolTable.Entry
Enclosing class:
SymbolTable

protected static final class SymbolTable.Entry extends Object
This class is a symbol table entry. Each entry acts as a node in a linked list.
  • Field Details

    • symbol

      public String symbol
      Symbol.
    • characters

      public char[] characters
      Symbol characters. This information is duplicated here for comparison performance.
    • next

      public SymbolTable.Entry next
      The next entry.
  • Constructor Details

    • Entry

      public Entry(String symbol, SymbolTable.Entry next)
      Constructs a new entry from the specified symbol and next entry reference.
    • Entry

      public Entry(char[] ch, int offset, int length, SymbolTable.Entry next)
      Constructs a new entry from the specified symbol information and next entry reference.