Record Class TimeRangeInOut.TimeRangeHour

java.lang.Object
java.lang.Record
com.iohao.net.framework.core.flow.internal.TimeRangeInOut.TimeRangeHour
Record Components:
hourTime - Hour
count - The number of action calls in one hour
minuteList - Minute time ranges
Enclosing class:
TimeRangeInOut

public static record TimeRangeInOut.TimeRangeHour(LocalTime hourTime, LongAdder count, List<TimeRangeInOut.TimeRangeMinute> minuteList) extends Record
Hourly call statistics record holding the hour, total count, and per-minute breakdowns.
Author:
渔民小镇
  • Constructor Details

  • Method Details

    • create

      public static TimeRangeInOut.TimeRangeHour create(int hour, List<TimeRangeInOut.TimeRangeMinute> minuteList)
      Create an hourly statistics record for the given hour.
      Parameters:
      hour - the hour of day (0-23)
      minuteList - the minute-level statistics objects
      Returns:
      a new TimeRangeHour instance
    • getHour

      public int getHour()
      Get the hour of day.
      Returns:
      the hour (0-23)
    • toString

      public @NonNull 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
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • hourTime

      public LocalTime hourTime()
      Returns the value of the hourTime record component.
      Returns:
      the value of the hourTime record component
    • count

      public LongAdder count()
      Returns the value of the count record component.
      Returns:
      the value of the count record component
    • minuteList

      public List<TimeRangeInOut.TimeRangeMinute> minuteList()
      Returns the value of the minuteList record component.
      Returns:
      the value of the minuteList record component