Record Class InputHolder.BoundStageInput
java.lang.Object
java.lang.Record
org.aksw.shellgebra.exec.virtual.InputHolder.BoundStageInput
- All Implemented Interfaces:
InputHolder
- Enclosing interface:
InputHolder
public static record InputHolder.BoundStageInput(BoundStage boundStage)
extends Record
implements InputHolder
-
Nested Class Summary
Nested classes/interfaces inherited from interface InputHolder
InputHolder.BoundStageInput, InputHolder.ByteSourceInput, InputHolder.FileWriterTaskInput, InputHolder.Type -
Constructor Summary
ConstructorsConstructorDescriptionBoundStageInput(BoundStage boundStage) Creates an instance of aBoundStageInputrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theboundStagerecord component.final booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
BoundStageInput
Creates an instance of aBoundStageInputrecord class.- Parameters:
boundStage- the value for theboundStagerecord component
-
-
Method Details
-
getType
- Specified by:
getTypein interfaceInputHolder
-
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). -
boundStage
Returns the value of theboundStagerecord component.- Returns:
- the value of the
boundStagerecord component
-