Package org.aksw.jenax.engine.qlever
Record Class RdfDatabaseBuilderQlever.DockerDataArgumentBridge
java.lang.Object
java.lang.Record
org.aksw.jenax.engine.qlever.RdfDatabaseBuilderQlever.DockerDataArgumentBridge
- Enclosing class:
- RdfDatabaseBuilderQlever
public static record RdfDatabaseBuilderQlever.DockerDataArgumentBridge(FileWriterTask hostFileTask, com.github.dockerjava.api.model.Bind bind, String[] cmdContrib)
extends Record
hostFileTask: The name of a regular file or a named pipe on the host.
The writer may be a noop or a generator for that file's content.
bind: Docker bind specification of the hostFile into a container path
cmdContrib: Contribution to the docker invocation. Contains the container file path and any post-processing.
-
Constructor Summary
ConstructorsConstructorDescriptionDockerDataArgumentBridge(FileWriterTask hostFileTask, com.github.dockerjava.api.model.Bind bind, String[] cmdContrib) Creates an instance of aDockerDataArgumentBridgerecord class. -
Method Summary
Modifier and TypeMethodDescriptioncom.github.dockerjava.api.model.Bindbind()Returns the value of thebindrecord component.String[]Returns the value of thecmdContribrecord 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 thehostFileTaskrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DockerDataArgumentBridge
public DockerDataArgumentBridge(FileWriterTask hostFileTask, com.github.dockerjava.api.model.Bind bind, String[] cmdContrib) Creates an instance of aDockerDataArgumentBridgerecord class.- Parameters:
hostFileTask- the value for thehostFileTaskrecord componentbind- the value for thebindrecord componentcmdContrib- the value for thecmdContribrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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). -
hostFileTask
Returns the value of thehostFileTaskrecord component.- Returns:
- the value of the
hostFileTaskrecord component
-
bind
public com.github.dockerjava.api.model.Bind bind()Returns the value of thebindrecord component.- Returns:
- the value of the
bindrecord component
-
cmdContrib
Returns the value of thecmdContribrecord component.- Returns:
- the value of the
cmdContribrecord component
-