Record Class DiscreteProfile
java.lang.Object
java.lang.Record
gov.nasa.jpl.aerie.merlin.server.models.DiscreteProfile
-
Constructor Summary
ConstructorsConstructorDescriptionDiscreteProfile(gov.nasa.jpl.aerie.merlin.protocol.types.ValueSchema schema, List<gov.nasa.jpl.aerie.merlin.driver.engine.ProfileSegment<Optional<gov.nasa.jpl.aerie.merlin.protocol.types.SerializedValue>>> segments) Creates an instance of aDiscreteProfilerecord 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.gov.nasa.jpl.aerie.merlin.protocol.types.ValueSchemaschema()Returns the value of theschemarecord component.List<gov.nasa.jpl.aerie.merlin.driver.engine.ProfileSegment<Optional<gov.nasa.jpl.aerie.merlin.protocol.types.SerializedValue>>> segments()Returns the value of thesegmentsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DiscreteProfile
public DiscreteProfile(gov.nasa.jpl.aerie.merlin.protocol.types.ValueSchema schema, List<gov.nasa.jpl.aerie.merlin.driver.engine.ProfileSegment<Optional<gov.nasa.jpl.aerie.merlin.protocol.types.SerializedValue>>> segments) Creates an instance of aDiscreteProfilerecord class.- Parameters:
schema- the value for theschemarecord componentsegments- the value for thesegmentsrecord 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). -
schema
public gov.nasa.jpl.aerie.merlin.protocol.types.ValueSchema schema()Returns the value of theschemarecord component.- Returns:
- the value of the
schemarecord component
-
segments
public List<gov.nasa.jpl.aerie.merlin.driver.engine.ProfileSegment<Optional<gov.nasa.jpl.aerie.merlin.protocol.types.SerializedValue>>> segments()Returns the value of thesegmentsrecord component.- Returns:
- the value of the
segmentsrecord component
-