Record Class JavaStreamTransform
java.lang.Object
java.lang.Record
org.aksw.shellgebra.shim.cmd.JavaStreamTransform
public record JavaStreamTransform(org.aksw.commons.io.util.stream.InputStreamTransform inputStreamTransform, org.aksw.commons.io.util.stream.OutputStreamTransform outputStreamTransform)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionJavaStreamTransform(org.aksw.commons.io.util.stream.InputStreamTransform inputStreamTransform, org.aksw.commons.io.util.stream.OutputStreamTransform outputStreamTransform) Creates an instance of aJavaStreamTransformrecord 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.org.aksw.commons.io.util.stream.InputStreamTransformReturns the value of theinputStreamTransformrecord component.org.aksw.commons.io.util.stream.OutputStreamTransformReturns the value of theoutputStreamTransformrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
JavaStreamTransform
public JavaStreamTransform(org.aksw.commons.io.util.stream.InputStreamTransform inputStreamTransform, org.aksw.commons.io.util.stream.OutputStreamTransform outputStreamTransform) Creates an instance of aJavaStreamTransformrecord class.- Parameters:
inputStreamTransform- the value for theinputStreamTransformrecord componentoutputStreamTransform- the value for theoutputStreamTransformrecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
inputStreamTransform
public org.aksw.commons.io.util.stream.InputStreamTransform inputStreamTransform()Returns the value of theinputStreamTransformrecord component.- Returns:
- the value of the
inputStreamTransformrecord component
-
outputStreamTransform
public org.aksw.commons.io.util.stream.OutputStreamTransform outputStreamTransform()Returns the value of theoutputStreamTransformrecord component.- Returns:
- the value of the
outputStreamTransformrecord component
-