Record Class JsonText.JsonObjectResult.InvalidResult
java.lang.Object
java.lang.Record
org.diabetestechnology.drh.service.http.util.JsonText.JsonObjectResult.InvalidResult
- All Implemented Interfaces:
JsonText.JsonObjectResult
- Enclosing interface:
JsonText.JsonObjectResult
public static record JsonText.JsonObjectResult.InvalidResult(String originalText, List<Exception> exceptions)
extends Record
implements JsonText.JsonObjectResult
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.diabetestechnology.drh.service.http.util.JsonText.JsonObjectResult
JsonText.JsonObjectResult.InvalidResult, JsonText.JsonObjectResult.ValidResult<T>, JsonText.JsonObjectResult.ValidResultClassNotFound, JsonText.JsonObjectResult.ValidResultClassNotInstantiated, JsonText.JsonObjectResult.ValidUntypedResult -
Constructor Summary
ConstructorsConstructorDescriptionInvalidResult(String originalText, List<Exception> exceptions) Creates an instance of aInvalidResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexceptionsrecord component.final inthashCode()Returns a hash code value for this object.booleanisValid()Returns the value of theoriginalTextrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
InvalidResult
Creates an instance of aInvalidResultrecord class.- Parameters:
originalText- the value for theoriginalTextrecord componentexceptions- the value for theexceptionsrecord component
-
-
Method Details
-
isValid
public boolean isValid()- Specified by:
isValidin interfaceJsonText.JsonObjectResult
-
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). -
originalText
Returns the value of theoriginalTextrecord component.- Specified by:
originalTextin interfaceJsonText.JsonObjectResult- Returns:
- the value of the
originalTextrecord component
-
exceptions
Returns the value of theexceptionsrecord component.- Returns:
- the value of the
exceptionsrecord component
-