Record Class StemmerDictionaryParser.ParseStatistics

java.lang.Object
java.lang.Record
org.egothor.stemmer.StemmerDictionaryParser.ParseStatistics
Record Components:
sourceDescription - logical source description
lineCount - number of physical lines read
entryCount - number of logical dictionary entries emitted
ignoredLineCount - number of ignored empty or remark-only lines
Enclosing class:
StemmerDictionaryParser

public static record StemmerDictionaryParser.ParseStatistics(String sourceDescription, int lineCount, int entryCount, int ignoredLineCount) extends Record
Immutable parsing statistics.
  • Constructor Details

    • ParseStatistics

      public ParseStatistics(String sourceDescription, int lineCount, int entryCount, int ignoredLineCount)
      Creates parsing statistics.
      Parameters:
      sourceDescription - logical source description
      lineCount - number of physical lines read
      entryCount - number of logical dictionary entries emitted
      ignoredLineCount - number of ignored empty or remark-only lines
      Throws:
      NullPointerException - if sourceDescription is null
      IllegalArgumentException - if any numeric value is negative
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • sourceDescription

      public String sourceDescription()
      Returns the value of the sourceDescription record component.
      Returns:
      the value of the sourceDescription record component
    • lineCount

      public int lineCount()
      Returns the value of the lineCount record component.
      Returns:
      the value of the lineCount record component
    • entryCount

      public int entryCount()
      Returns the value of the entryCount record component.
      Returns:
      the value of the entryCount record component
    • ignoredLineCount

      public int ignoredLineCount()
      Returns the value of the ignoredLineCount record component.
      Returns:
      the value of the ignoredLineCount record component