Record Class VImage.ProjectOutput
java.lang.Object
java.lang.Record
app.photofox.vipsffm.VImage.ProjectOutput
- Enclosing class:
VImage
Helper record to hold multiple outputs from the
VImage.project(app.photofox.vipsffm.VipsOption...)
operation-
Constructor Summary
ConstructorsConstructorDescriptionProjectOutput
(VImage columns, VImage rows) Creates an instance of aProjectOutput
record class. -
Method Summary
Modifier and TypeMethodDescriptioncolumns()
Returns the value of thecolumns
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.rows()
Returns the value of therows
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ProjectOutput
-
-
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)
. -
columns
Returns the value of thecolumns
record component.- Returns:
- the value of the
columns
record component
-
rows
Returns the value of therows
record component.- Returns:
- the value of the
rows
record component
-