Record Class RdfDataSourceWithLocalLateral.PolyfillLateralConfig
java.lang.Object
java.lang.Record
org.aksw.jenax.dataaccess.sparql.polyfill.datasource.RdfDataSourceWithLocalLateral.PolyfillLateralConfig
- Enclosing class:
- RdfDataSourceWithLocalLateral
public static record RdfDataSourceWithLocalLateral.PolyfillLateralConfig(int bulkSize, int concurrentSlots)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionPolyfillLateralConfig(int bulkSize, int concurrentSlots) Creates an instance of aPolyfillLateralConfigrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintbulkSize()Returns the value of thebulkSizerecord component.intReturns the value of theconcurrentSlotsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Parse the settings of format [{bulkSize}[-{concurrentSlotCount}]].final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PolyfillLateralConfig
public PolyfillLateralConfig(int bulkSize, int concurrentSlots) Creates an instance of aPolyfillLateralConfigrecord class.- Parameters:
bulkSize- the value for thebulkSizerecord componentconcurrentSlots- the value for theconcurrentSlotsrecord component
-
-
Method Details
-
parse
Parse the settings of format [{bulkSize}[-{concurrentSlotCount}]]. -
parse
public static RdfDataSourceWithLocalLateral.PolyfillLateralConfig parse(String val, String separator) -
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 with '=='. -
bulkSize
public int bulkSize()Returns the value of thebulkSizerecord component.- Returns:
- the value of the
bulkSizerecord component
-
concurrentSlots
public int concurrentSlots()Returns the value of theconcurrentSlotsrecord component.- Returns:
- the value of the
concurrentSlotsrecord component
-