Package net.sf.saxon.expr.parser
Record Class XPathParser.InlineFunctionDetails
java.lang.Object
java.lang.Record
net.sf.saxon.expr.parser.XPathParser.InlineFunctionDetails
- Enclosing class:
XPathParser
public static record XPathParser.InlineFunctionDetails(IndexedStack<LocalBinding> outerVariables, List<LocalBinding> outerVariablesUsed, List<UserFunctionParameter> implicitParams)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionInlineFunctionDetails(IndexedStack<LocalBinding> outerVariables, List<LocalBinding> outerVariablesUsed, List<UserFunctionParameter> implicitParams) Creates an instance of aInlineFunctionDetailsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theimplicitParamsrecord component.Returns the value of theouterVariablesrecord component.Returns the value of theouterVariablesUsedrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
InlineFunctionDetails
public InlineFunctionDetails() -
InlineFunctionDetails
public InlineFunctionDetails(IndexedStack<LocalBinding> outerVariables, List<LocalBinding> outerVariablesUsed, List<UserFunctionParameter> implicitParams) Creates an instance of aInlineFunctionDetailsrecord class.- Parameters:
outerVariables- the value for theouterVariablesrecord componentouterVariablesUsed- the value for theouterVariablesUsedrecord componentimplicitParams- the value for theimplicitParamsrecord component
-
-
Method Details
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
outerVariables
Returns the value of theouterVariablesrecord component.- Returns:
- the value of the
outerVariablesrecord component
-
outerVariablesUsed
Returns the value of theouterVariablesUsedrecord component.- Returns:
- the value of the
outerVariablesUsedrecord component
-
implicitParams
Returns the value of theimplicitParamsrecord component.- Returns:
- the value of the
implicitParamsrecord component
-