Record Class IntervalleDates

java.lang.Object
java.lang.Record
eu.telecomsudparis.csc4102.util.IntervalleDates
Record Components:
dateDebut - la date de début.
dateFin - la date de fin.

public record IntervalleDates(LocalDate dateDebut, LocalDate dateFin) extends Record
Classe représentant un intervalle de dates. La date de début est avant la date de fin ; la date de début peut être LocalDate.MIN ; la date de fin peut être LocalDate.MAX.
  • Constructor Details

    • IntervalleDates

      public IntervalleDates(LocalDate dateDebut, LocalDate dateFin)
      vérifie des post-conditions sur la construction d'un intervalle.
      Parameters:
      dateDebut - la date de début.
      dateFin - la date de fin.
  • Method Details

    • getDateDebut

      public LocalDate getDateDebut()
      obtient la date de début de l'intervalle.
      Returns:
      la date de début.
    • getDateFin

      public LocalDate getDateFin()
      obtient la date de fin de l'intervalle.
      Returns:
      la date de fin.
    • nombreDeJours

      public long nombreDeJours()
      retourne le nombre de jours de l'intervalle.
      Returns:
      le nombre de jours.
    • dateEstDansIntervalleDates

      public boolean dateEstDansIntervalleDates(LocalDate dateATester)
      retourne vrai si la date proposée est dans cet intervalle, les bornes étant incluses.
      Parameters:
      dateATester - la date à tester.
      Returns:
      vrai si dans cet intervalle.
    • intervalleDatesSIntersectent

      public boolean intervalleDatesSIntersectent(IntervalleDates intervalle)
      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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public boolean equals(Object obj)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      obj - the object with which to compare
      Returns:
      true if this object is the same as the obj argument; false otherwise.
    • toString

      public String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • dateDebut

      public LocalDate dateDebut()
      Returns the value of the dateDebut record component.
      Returns:
      the value of the dateDebut record component
    • dateFin

      public LocalDate dateFin()
      Returns the value of the dateFin record component.
      Returns:
      the value of the dateFin record component