Package eu.telecomsudparis.csc4102.util
Record Class IntervalleInstants
java.lang.Object
java.lang.Record
eu.telecomsudparis.csc4102.util.IntervalleInstants
- Record Components:
instantDebut
- l'instant de début.instantFin
- l'instant de fin.
Classe représentant un intervalle d'instants. L'instant de début est avant
l'instant de fin ; l'instant de début peut être
Instant.MIN
;
l'instant de fin peut être Instant.MAX
.-
Constructor Summary
ConstructorDescriptionIntervalleInstants
(Instant instantDebut, Instant instantFin) vérifie des post-conditions sur la construction d'un intervalle. -
Method Summary
Modifier and TypeMethodDescriptioncalcule la durée de l'intervalle.boolean
Indicates whether some other object is "equal to" this one.obtient l'instant de début de l'intervalle.obtient l'instant de fin de l'intervalle.int
hashCode()
Returns a hash code value for this object.Returns the value of theinstantDebut
record component.boolean
instantEstDansIntervalleInstants
(Instant instantATester) retourne vrai si l'instant proposé est dans cet intervalle, les bornes étant incluses.Returns the value of theinstantFin
record component.boolean
intervalleInstantsSIntersectent
(IntervalleInstants intervalle) retourne vrai si les deux intervalles proposées s'intersectent, les bornes étant incluses dans l'intersection.toString()
Returns a string representation of this record class.
-
Constructor Details
-
IntervalleInstants
vérifie des post-conditions sur la construction d'un intervalle.- Parameters:
instantDebut
- l'instant de début.instantFin
- l'instant de fin.
-
-
Method Details
-
getInstantDebut
obtient l'instant de début de l'intervalle.- Returns:
- l'instant de début.
-
getInstantFin
obtient l'instant de fin de l'intervalle.- Returns:
- l'instant de fin.
-
calculerDuree
calcule la durée de l'intervalle.- Returns:
- la durée
-
instantEstDansIntervalleInstants
retourne vrai si l'instant proposé est dans cet intervalle, les bornes étant incluses.- Parameters:
instantATester
- l'instant à tester.- Returns:
- vrai si dans cet intervalle.
-
intervalleInstantsSIntersectent
retourne vrai si les deux intervalles proposées s'intersectent, les bornes étant incluses dans l'intersection.- Parameters:
intervalle
- le second intervalle.- Returns:
- vrai si les deux intervalles s'intersectent.
-
hashCode
public 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)
. -
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. -
instantDebut
Returns the value of theinstantDebut
record component.- Returns:
- the value of the
instantDebut
record component
-
instantFin
Returns the value of theinstantFin
record component.- Returns:
- the value of the
instantFin
record component
-