Record Class ReportConfiguration.IODescriptor<T>
java.lang.Object
java.lang.Record
org.apache.rat.ReportConfiguration.IODescriptor<T>
- Type Parameters:
T- either InputStream or OutputStream.- Record Components:
name- the name of the supplier.ioSupplier- the IOSupplier that provides either an InputStream or an OutputStream.
- Enclosing class:
ReportConfiguration
-
Constructor Summary
ConstructorsConstructorDescriptionIODescriptor(String name, org.apache.commons.io.function.IOSupplier<T> ioSupplier) Creates an instance of aIODescriptorrecord 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.apache.commons.io.function.IOSupplier<T> Returns the value of theioSupplierrecord component.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IODescriptor
Creates an instance of aIODescriptorrecord class.- Parameters:
name- the value for thenamerecord componentioSupplier- the value for theioSupplierrecord 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). -
name
-
ioSupplier
Returns the value of theioSupplierrecord component.- Returns:
- the value of the
ioSupplierrecord component
-