Record Class GoSourceFileInfo
java.lang.Object
java.lang.Record
ghidra.app.util.bin.format.golang.rtti.GoSourceFileInfo
- Record Components:
fileName
- source filenamelineNum
- source line number
Represents a golang source file and line number tuple.
-
Constructor Summary
ConstructorDescriptionGoSourceFileInfo
(String fileName, int lineNum) Creates an instance of aGoSourceFileInfo
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.fileName()
Returns the value of thefileName
record component.Returns the source location info as a string formatted as "filename:linenum"int
Returns the source location info as a string formatted as "File: filename Line: linenum"final int
hashCode()
Returns a hash code value for this object.int
lineNum()
Returns the value of thelineNum
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
getFileName
-
getLineNum
public int getLineNum() -
getDescription
Returns the source location info as a string formatted as "filename:linenum"- Returns:
- "filename:linenum"
-
getVerboseDescription
Returns the source location info as a string formatted as "File: filename Line: linenum"- Returns:
- "File: filename Line: linenum"
-
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 '=='. -
fileName
Returns the value of thefileName
record component.- Returns:
- the value of the
fileName
record component
-
lineNum
public int lineNum()Returns the value of thelineNum
record component.- Returns:
- the value of the
lineNum
record component
-