Record Class Csv2ExcelEngine.Csv2ExcelRequest

java.lang.Object
java.lang.Record
ch.so.agi.gretl.internal.ioxwkf.Csv2ExcelEngine.Csv2ExcelRequest
Enclosing class:
Csv2ExcelEngine

public static record Csv2ExcelEngine.Csv2ExcelRequest(Path csvFile, Path outputFile, boolean firstLineIsHeader, String valueDelimiter, String valueSeparator, String encoding, String models, String modeldir) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    Csv2ExcelRequest(Path csvFile, Path outputFile, boolean firstLineIsHeader, String valueDelimiter, String valueSeparator, String encoding, String models, String modeldir)
    Creates an instance of a Csv2ExcelRequest record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the csvFile record component.
    Returns the value of the encoding record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    boolean
    Returns the value of the firstLineIsHeader record component.
    final int
    Returns a hash code value for this object.
    Returns the value of the modeldir record component.
    Returns the value of the models record component.
    Returns the value of the outputFile record component.
    final String
    Returns a string representation of this record class.
    Returns the value of the valueDelimiter record component.
    Returns the value of the valueSeparator record component.

    Methods inherited from class java.lang.Object

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

    • Csv2ExcelRequest

      public Csv2ExcelRequest(Path csvFile, Path outputFile, boolean firstLineIsHeader, String valueDelimiter, String valueSeparator, String encoding, String models, String modeldir)
      Creates an instance of a Csv2ExcelRequest record class.
      Parameters:
      csvFile - the value for the csvFile record component
      outputFile - the value for the outputFile record component
      firstLineIsHeader - the value for the firstLineIsHeader record component
      valueDelimiter - the value for the valueDelimiter record component
      valueSeparator - the value for the valueSeparator record component
      encoding - the value for the encoding record component
      models - the value for the models record component
      modeldir - the value for the modeldir record component
  • 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.
    • csvFile

      public Path csvFile()
      Returns the value of the csvFile record component.
      Returns:
      the value of the csvFile record component
    • outputFile

      public Path outputFile()
      Returns the value of the outputFile record component.
      Returns:
      the value of the outputFile record component
    • firstLineIsHeader

      public boolean firstLineIsHeader()
      Returns the value of the firstLineIsHeader record component.
      Returns:
      the value of the firstLineIsHeader record component
    • valueDelimiter

      public String valueDelimiter()
      Returns the value of the valueDelimiter record component.
      Returns:
      the value of the valueDelimiter record component
    • valueSeparator

      public String valueSeparator()
      Returns the value of the valueSeparator record component.
      Returns:
      the value of the valueSeparator record component
    • encoding

      public String encoding()
      Returns the value of the encoding record component.
      Returns:
      the value of the encoding record component
    • models

      public String models()
      Returns the value of the models record component.
      Returns:
      the value of the models record component
    • modeldir

      public String modeldir()
      Returns the value of the modeldir record component.
      Returns:
      the value of the modeldir record component