Record Class SmapInput
java.lang.Object
java.lang.Record
org.apache.jasper.compiler.SmapInput
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.fileName()
Returns the value of thefileName
record component.final int
hashCode()
Returns a hash code value for this object.int
Returns the value of thelineNumber
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
SmapInput
Creates an instance of aSmapInput
record class.- Parameters:
fileName
- the value for thefileName
record componentlineNumber
- the value for thelineNumber
record 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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with thecompare
method from their corresponding wrapper classes. -
fileName
Returns the value of thefileName
record component.- Returns:
- the value of the
fileName
record component
-
lineNumber
public int lineNumber()Returns the value of thelineNumber
record component.- Returns:
- the value of the
lineNumber
record component
-