Record Class AnalysisInfo
java.lang.Object
java.lang.Record
com.github._1c_syntax.bsl.languageserver.reporters.data.AnalysisInfo
public record AnalysisInfo(LocalDateTime date, List<FileInfo> fileinfos, String sourceDir)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionAnalysisInfo(LocalDateTime date, List<FileInfo> fileinfos, String sourceDir) Creates an instance of aAnalysisInforecord class. -
Method Summary
Modifier and TypeMethodDescriptiondate()Returns the value of thedaterecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of thefileinfosrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thesourceDirrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AnalysisInfo
Creates an instance of aAnalysisInforecord class.- Parameters:
date- the value for thedaterecord componentfileinfos- the value for thefileinfosrecord componentsourceDir- the value for thesourceDirrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
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. All components in this record class are compared withObjects::equals(Object,Object). -
date
Returns the value of thedaterecord component.- Returns:
- the value of the
daterecord component
-
fileinfos
-
sourceDir
Returns the value of thesourceDirrecord component.- Returns:
- the value of the
sourceDirrecord component
-