Record Class SmapInput
java.lang.Object
java.lang.Record
org.apache.jasper.compiler.SmapInput
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.fileName()Returns the value of thefileNamerecord component.final inthashCode()Returns a hash code value for this object.intReturns the value of thelineNumberrecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
SmapInputCreates an instance of aSmapInputrecord class.- Parameters:
- fileName- the value for the- fileNamerecord component
- lineNumber- the value for the- lineNumberrecord component
 
 
- 
- 
Method Details- 
toString
- 
hashCode
- 
equalsIndicates 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 thecomparemethod from their corresponding wrapper classes.
- 
fileNameReturns the value of thefileNamerecord component.- Returns:
- the value of the fileNamerecord component
 
- 
lineNumberpublic int lineNumber()Returns the value of thelineNumberrecord component.- Returns:
- the value of the lineNumberrecord component
 
 
-