Class PendingToken

java.lang.Object
org.opengrok.indexer.analysis.PendingToken

public class PendingToken extends Object
Represents an almost-wholly immutable tuple whose field data are used by JFlexTokenizer to set attributes to be read while iterating a token stream.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
     
    final int
     
    final String
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    PendingToken(String str, int start, int end)
    Initializes an instance with immutable fields for the specified arguments.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Compares this instance's immutable fields to the other.
    int
    Calculates a hash code from the instance's immutable fields.
    Gets a readable representation for debugging.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • str

      public final String str
    • start

      public final int start
    • end

      public final int end
  • Constructor Details

    • PendingToken

      public PendingToken(String str, int start, int end)
      Initializes an instance with immutable fields for the specified arguments.
      Parameters:
      str - string value
      start - start offset
      end - end offset
  • Method Details

    • equals

      public boolean equals(Object o)
      Compares this instance's immutable fields to the other.
      Overrides:
      equals in class Object
      Parameters:
      o - object
      Returns:
      true if the objects are equal
    • hashCode

      public int hashCode()
      Calculates a hash code from the instance's immutable fields.
      Overrides:
      hashCode in class Object
      Returns:
      a hash value
    • toString

      public String toString()
      Gets a readable representation for debugging.
      Overrides:
      toString in class Object
      Returns:
      a defined instance