Record Class CapturePointParser.Result
java.lang.Object
java.lang.Record
io.nosqlbench.virtdata.core.templates.CapturePointParser.Result
- Enclosing class:
CapturePointParser
public static record CapturePointParser.Result(String rawTemplate, CapturePoints captures)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionResult(String rawTemplate, CapturePoints captures) Creates an instance of aResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncaptures()Returns the value of thecapturesrecord component.final booleanIndicates whether some other object is "equal to" this one.inthashCode()Returns a hash code value for this object.Returns the value of therawTemplaterecord component.toString()Returns a string representation of this record class.
-
Constructor Details
-
Result
Creates an instance of aResultrecord class.- Parameters:
rawTemplate- the value for therawTemplaterecord componentcaptures- the value for thecapturesrecord component
-
-
Method Details
-
getRawTemplate
-
getCaptures
-
hashCode
-
toString
-
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). -
rawTemplate
Returns the value of therawTemplaterecord component.- Returns:
- the value of the
rawTemplaterecord component
-
captures
Returns the value of thecapturesrecord component.- Returns:
- the value of the
capturesrecord component
-