Record Class FailedParsedResultEntry
java.lang.Object
java.lang.Record
com.bluebell.greenhouse.sol.models.dto.parsers.FailedParsedResultEntry
- Record Components:
rawEntry- raw data entryerrorReason- reason for failure
-
Constructor Summary
ConstructorsConstructorDescriptionFailedParsedResultEntry(String rawEntry, String errorReason) Creates an instance of aFailedParsedResultEntryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theerrorReasonrecord component.final inthashCode()Returns a hash code value for this object.rawEntry()Returns the value of therawEntryrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
FailedParsedResultEntry
Creates an instance of aFailedParsedResultEntryrecord class.- Parameters:
rawEntry- the value for therawEntryrecord componenterrorReason- the value for theerrorReasonrecord 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). -
rawEntry
-
errorReason
Returns the value of theerrorReasonrecord component.- Returns:
- the value of the
errorReasonrecord component
-