Record Class Flnf015DTO

java.lang.Object
java.lang.Record
systextil.integracao.dto.Flnf015DTO

public record Flnf015DTO(int documento, int serie, Date emissor, String validacao, String status, String usuario, Date data_vld, String chave_acesso) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    Flnf015DTO(int documento, int serie, Date emissor, String validacao, String status, String usuario, Date data_vld, String chave_acesso)
    Creates an instance of a Flnf015DTO record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the chave_acesso record component.
    Returns the value of the data_vld record component.
    int
    Returns the value of the documento record component.
    Returns the value of the emissor record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the serie record component.
    Returns the value of the status record component.
    final String
    Returns a string representation of this record class.
    Returns the value of the usuario record component.
    Returns the value of the validacao record component.

    Methods inherited from class java.lang.Object

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

    • Flnf015DTO

      public Flnf015DTO(int documento, int serie, Date emissor, String validacao, String status, String usuario, Date data_vld, String chave_acesso)
      Creates an instance of a Flnf015DTO record class.
      Parameters:
      documento - the value for the documento record component
      serie - the value for the serie record component
      emissor - the value for the emissor record component
      validacao - the value for the validacao record component
      status - the value for the status record component
      usuario - the value for the usuario record component
      data_vld - the value for the data_vld record component
      chave_acesso - the value for the chave_acesso record component
  • Method Details

    • documento

      public int documento()
      Returns the value of the documento record component.
      Returns:
      the value of the documento record component
    • serie

      public int serie()
      Returns the value of the serie record component.
      Returns:
      the value of the serie record component
    • emissor

      public Date emissor()
      Returns the value of the emissor record component.
      Returns:
      the value of the emissor record component
    • validacao

      public String validacao()
      Returns the value of the validacao record component.
      Returns:
      the value of the validacao record component
    • status

      public String status()
      Returns the value of the status record component.
      Returns:
      the value of the status record component
    • usuario

      public String usuario()
      Returns the value of the usuario record component.
      Returns:
      the value of the usuario record component
    • data_vld

      public Date data_vld()
      Returns the value of the data_vld record component.
      Returns:
      the value of the data_vld record component
    • chave_acesso

      public String chave_acesso()
      Returns the value of the chave_acesso record component.
      Returns:
      the value of the chave_acesso record component
    • 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.