Record Class MissionModelService.BulkArgumentValidationResponse.Validation
java.lang.Object
java.lang.Record
gov.nasa.jpl.aerie.merlin.server.services.MissionModelService.BulkArgumentValidationResponse.Validation
- All Implemented Interfaces:
MissionModelService.BulkArgumentValidationResponse
- Enclosing interface:
MissionModelService.BulkArgumentValidationResponse
public static record MissionModelService.BulkArgumentValidationResponse.Validation(List<gov.nasa.jpl.aerie.merlin.protocol.model.InputType.ValidationNotice> notices)
extends Record
implements MissionModelService.BulkArgumentValidationResponse
-
Nested Class Summary
Nested classes/interfaces inherited from interface gov.nasa.jpl.aerie.merlin.server.services.MissionModelService.BulkArgumentValidationResponse
MissionModelService.BulkArgumentValidationResponse.InstantiationError, MissionModelService.BulkArgumentValidationResponse.NoSuchActivityError, MissionModelService.BulkArgumentValidationResponse.NoSuchMissionModelError, MissionModelService.BulkArgumentValidationResponse.Success, MissionModelService.BulkArgumentValidationResponse.Validation -
Constructor Summary
ConstructorsConstructorDescriptionValidation(List<gov.nasa.jpl.aerie.merlin.protocol.model.InputType.ValidationNotice> notices) Creates an instance of aValidationrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.List<gov.nasa.jpl.aerie.merlin.protocol.model.InputType.ValidationNotice> notices()Returns the value of thenoticesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Validation
public Validation(List<gov.nasa.jpl.aerie.merlin.protocol.model.InputType.ValidationNotice> notices) Creates an instance of aValidationrecord class.- Parameters:
notices- the value for thenoticesrecord component
-
-
Method Details
-
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). -
notices
Returns the value of thenoticesrecord component.- Returns:
- the value of the
noticesrecord component
-