Package gov.nasa.jpl.aerie.json
Record Class JsonParseResult.Failure<T>
java.lang.Object
java.lang.Record
gov.nasa.jpl.aerie.json.JsonParseResult.Failure<T>
- All Implemented Interfaces:
JsonParseResult<T>
- Enclosing interface:
JsonParseResult<T>
public static record JsonParseResult.Failure<T>(JsonParseResult.FailureReason reason)
extends Record
implements JsonParseResult<T>
-
Nested Class Summary
Nested classes/interfaces inherited from interface gov.nasa.jpl.aerie.json.JsonParseResult
JsonParseResult.Failure<T>, JsonParseResult.FailureReason, JsonParseResult.Success<T> -
Constructor Summary
ConstructorsConstructorDescriptionFailure(JsonParseResult.FailureReason reason) Creates an instance of aFailurerecord class. -
Method Summary
Modifier and TypeMethodDescription<S> JsonParseResult.Failure<S> cast()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.reason()Returns the value of thereasonrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface gov.nasa.jpl.aerie.json.JsonParseResult
getSuccessOrThrow, getSuccessOrThrow, isFailure, mapSuccess, parWith, parWith, prependBreadcrumb
-
Constructor Details
-
Failure
Creates an instance of aFailurerecord class.- Parameters:
reason- the value for thereasonrecord component
-
-
Method Details
-
cast
-
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). -
reason
Returns the value of thereasonrecord component.- Returns:
- the value of the
reasonrecord component
-