Record Class DiscreteProfile
java.lang.Object
java.lang.Record
gov.nasa.jpl.aerie.merlin.server.models.DiscreteProfile
-
Constructor Summary
ConstructorDescriptionDiscreteProfile
(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 aDiscreteProfile
record class. -
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.gov.nasa.jpl.aerie.merlin.protocol.types.ValueSchema
schema()
Returns the value of theschema
record component.List
<gov.nasa.jpl.aerie.merlin.driver.engine.ProfileSegment<Optional<gov.nasa.jpl.aerie.merlin.protocol.types.SerializedValue>>> segments()
Returns the value of thesegments
record component.final String
toString()
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 aDiscreteProfile
record class.- Parameters:
schema
- the value for theschema
record componentsegments
- the value for thesegments
record 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 theschema
record component.- Returns:
- the value of the
schema
record 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 thesegments
record component.- Returns:
- the value of the
segments
record component
-