Record Class ActCall<T,R>
java.lang.Object
java.lang.Record
jp.co.moneyforward.autotest.framework.action.ActCall<T,R>
- Type Parameters:
T
- Type input parameter
- All Implemented Interfaces:
Call
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionact()
Returns the value of theact
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theinputVariableName
record component.Returns the value of theoutputVariableName
record component.com.github.dakusui.actionunit.core.Action
toAction
(ActionComposer actionComposer) Converts this call to action to an action object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ActCall
-
-
Method Details
-
toAction
Description copied from interface:Call
Converts this call to action to an action object.
This is an
Node#accept
method in the Visitor pattern. Usually implementations of this method should call back byactionComposer#create(this)
to make a double dispatch happen.Each value in the
ongoingResolverBundle
is a function that resolves a value of a variable designated by a corresponding key. -
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
outputVariableName
Returns the value of theoutputVariableName
record component.- Returns:
- the value of the
outputVariableName
record component
-
act
-
inputVariableName
Returns the value of theinputVariableName
record component.- Returns:
- the value of the
inputVariableName
record component
-