Record Class Observation
java.lang.Object
java.lang.Record
ch.admin.bit.jeap.reaction.observer.core.domain.model.Observation
public record Observation(ObservationId id, ObservationType type, String fqn, SortedMap<String,String> props)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionObservation(ObservationId id, ObservationType type, String fqn, SortedMap<String, String> props) Creates an instance of aObservationrecord class.Observation(ObservationType type, String fqn, SortedMap<String, String> props) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.fqn()Returns the value of thefqnrecord component.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.static Observationstatic Observationprops()Returns the value of thepropsrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Constructor Details
-
Observation
-
Observation
public Observation(ObservationId id, ObservationType type, String fqn, SortedMap<String, String> props) Creates an instance of aObservationrecord class.- Parameters:
id- the value for theidrecord componenttype- the value for thetyperecord componentfqn- the value for thefqnrecord componentprops- the value for thepropsrecord component
-
-
Method Details
-
ofCommand
-
ofEvent
-
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). -
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
fqn
Returns the value of thefqnrecord component.- Returns:
- the value of the
fqnrecord component
-
props
Returns the value of thepropsrecord component.- Returns:
- the value of the
propsrecord component
-