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 theactrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theinputVariableNamerecord component.Returns the value of theoutputVariableNamerecord component.com.github.dakusui.actionunit.core.ActiontoAction(ActionComposer actionComposer) Converts this call to action to an action object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ActCall
-
-
Method Details
-
toAction
Description copied from interface:CallConverts this call to action to an action object.
This is an
Node#acceptmethod 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
ongoingResolverBundleis 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 theoutputVariableNamerecord component.- Returns:
- the value of the
outputVariableNamerecord component
-
act
-
inputVariableName
Returns the value of theinputVariableNamerecord component.- Returns:
- the value of the
inputVariableNamerecord component
-