Package org.aksw.iguana.cc.suite
Record Class Suite.Config
java.lang.Object
java.lang.Record
org.aksw.iguana.cc.suite.Suite.Config
- Enclosing class:
- Suite
public static record Suite.Config(List<DatasetConfig> datasets, List<ConnectionConfig> connections, List<Task.Config> tasks, List<StorageConfig> storages, List<Metric> metrics, List<ResponseBodyProcessor.Config> responseBodyProcessors)
extends Record
-
Constructor Summary
ConstructorDescriptionConfig
(List<DatasetConfig> datasets, List<ConnectionConfig> connections, List<Task.Config> tasks, List<StorageConfig> storages, List<Metric> metrics, List<ResponseBodyProcessor.Config> responseBodyProcessors) Creates an instance of aConfig
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconnections
record component.datasets()
Returns the value of thedatasets
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.metrics()
Returns the value of themetrics
record component.Returns the value of theresponseBodyProcessors
record component.storages()
Returns the value of thestorages
record component.tasks()
Returns the value of thetasks
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Config
public Config(List<DatasetConfig> datasets, List<ConnectionConfig> connections, List<Task.Config> tasks, List<StorageConfig> storages, List<Metric> metrics, List<ResponseBodyProcessor.Config> responseBodyProcessors) Creates an instance of aConfig
record class.- Parameters:
datasets
- the value for thedatasets
record componentconnections
- the value for theconnections
record componenttasks
- the value for thetasks
record componentstorages
- the value for thestorages
record componentmetrics
- the value for themetrics
record componentresponseBodyProcessors
- the value for theresponseBodyProcessors
record 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)
. -
datasets
Returns the value of thedatasets
record component.- Returns:
- the value of the
datasets
record component
-
connections
Returns the value of theconnections
record component.- Returns:
- the value of the
connections
record component
-
tasks
Returns the value of thetasks
record component.- Returns:
- the value of the
tasks
record component
-
storages
Returns the value of thestorages
record component.- Returns:
- the value of the
storages
record component
-
metrics
Returns the value of themetrics
record component.- Returns:
- the value of the
metrics
record component
-
responseBodyProcessors
Returns the value of theresponseBodyProcessors
record component.- Returns:
- the value of the
responseBodyProcessors
record component
-