Record Class ErrorProneDiagnostic
java.lang.Object
java.lang.Record
de.firemage.autograder.core.errorprone.ErrorProneDiagnostic
- All Implemented Interfaces:
Serializable
public record ErrorProneDiagnostic(SourceInfo sourceInfo, SourcePath path, int line, int column, String message, ErrorProneLint lint)
extends Record
implements Serializable
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionErrorProneDiagnostic(SourceInfo sourceInfo, SourcePath path, int line, int column, String message, ErrorProneLint lint) Creates an instance of aErrorProneDiagnosticrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintcolumn()Returns the value of thecolumnrecord component.final booleanIndicates whether some other object is "equal to" this one.static ErrorProneDiagnosticfrom(Diagnostic<? extends JavaFileObject> diagnostic, SourceInfo sourceInfo) final inthashCode()Returns a hash code value for this object.intline()Returns the value of thelinerecord component.lint()Returns the value of thelintrecord component.message()Returns the value of themessagerecord component.path()Returns the value of thepathrecord component.position()Returns the value of thesourceInforecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ErrorProneDiagnostic
public ErrorProneDiagnostic(SourceInfo sourceInfo, SourcePath path, int line, int column, String message, ErrorProneLint lint) Creates an instance of aErrorProneDiagnosticrecord class.- Parameters:
sourceInfo- the value for thesourceInforecord componentpath- the value for thepathrecord componentline- the value for thelinerecord componentcolumn- the value for thecolumnrecord componentmessage- the value for themessagerecord componentlint- the value for thelintrecord component
-
-
Method Details
-
from
public static ErrorProneDiagnostic from(Diagnostic<? extends JavaFileObject> diagnostic, SourceInfo sourceInfo) -
position
-
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. -
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. -
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
sourceInfo
Returns the value of thesourceInforecord component.- Returns:
- the value of the
sourceInforecord component
-
path
Returns the value of thepathrecord component.- Returns:
- the value of the
pathrecord component
-
line
public int line()Returns the value of thelinerecord component.- Returns:
- the value of the
linerecord component
-
column
public int column()Returns the value of thecolumnrecord component.- Returns:
- the value of the
columnrecord component
-
message
Returns the value of themessagerecord component.- Returns:
- the value of the
messagerecord component
-
lint
Returns the value of thelintrecord component.- Returns:
- the value of the
lintrecord component
-