Record Class JsonText.JsonObjectResult.ValidResult<T>
java.lang.Object
java.lang.Record
org.diabetestechnology.drh.service.http.util.JsonText.JsonObjectResult.ValidResult<T>
- All Implemented Interfaces:
JsonText.JsonObjectResult
- Enclosing interface:
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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.instance()
Returns the value of theinstance
record component.boolean
isValid()
Returns the value of thejsonObject
record component.Returns the value of theoriginalText
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ValidResult
Creates an instance of aValidResult
record class.- Parameters:
originalText
- the value for theoriginalText
record componentjsonObject
- the value for thejsonObject
record componentinstance
- the value for theinstance
record component
-
-
Method Details
-
isValid
public boolean isValid()- Specified by:
isValid
in 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 theoriginalText
record component.- Specified by:
originalText
in interfaceJsonText.JsonObjectResult
- Returns:
- the value of the
originalText
record component
-
jsonObject
Returns the value of thejsonObject
record component.- Returns:
- the value of the
jsonObject
record component
-
instance
Returns the value of theinstance
record component.- Returns:
- the value of the
instance
record component
-