Schnittstelle ITime

Alle Superschnittstellen:
IElement
Alle bekannten Implementierungsklassen:
Time

public interface ITime extends IElement
A ITime stores a time with a precision of 1 microsecond.
Version:
2022-05-28
Autor:
Silvan Wyss
  • Methodendetails

    • getDayOfMonth

      int getDayOfMonth()
      Gibt zurück:
      the day of the month of the current ITime.
    • getHourOfDay

      int getHourOfDay()
      Gibt zurück:
      the hour of the day of the current ITime.
    • getMicrosecondOfMillisecond

      int getMicrosecondOfMillisecond()
      Gibt zurück:
      the microsecond of the millisecond of the current ITime.
    • getMillisecondOfSecond

      int getMillisecondOfSecond()
      Gibt zurück:
      the millisecond of the second of the current ITime.
    • getMinuteOfHour

      int getMinuteOfHour()
      Gibt zurück:
      the minute of the hour of the current ITime.
    • getMonthOfYear

      Month getMonthOfYear()
      Gibt zurück:
      the month of the year of the current ITime.
    • getMonthOfYearAsInt

      int getMonthOfYearAsInt()
      Gibt zurück:
      the month of the year of the current ITime as int.
    • getSecondOfMinute

      int getSecondOfMinute()
      Gibt zurück:
      the second of the minute of the current ITime.
    • getWeekday

      Weekday getWeekday()
      Gibt zurück:
      the weekday of the current ITime.
    • getYear

      int getYear()
      Gibt zurück:
      the year of the current ITime.
    • isAfter

      boolean isAfter(ITime time)
      Parameter:
      time -
      Gibt zurück:
      true if the current ITime is after the given time, false otherwise
    • isBefore

      boolean isBefore(ITime time)
      Parameter:
      time -
      Gibt zurück:
      true if the current ITime is before the given time, false otherwise
    • isInLeapYear

      boolean isInLeapYear()
      Gibt zurück:
      true if the current ITime is in a leap year.
    • toSeconds

      long toSeconds()
      Gibt zurück:
      the seconds of the current ITime.
    • withAddedOrSubtractedDays

      ITime withAddedOrSubtractedDays(int days)
      Parameter:
      days -
      Gibt zurück:
      a new ITime with the given days added to or subtracted from the current ITime.
    • withAddedOrSubtractedHours

      ITime withAddedOrSubtractedHours(int hours)
      Parameter:
      hours -
      Gibt zurück:
      a new ITime with the given hours added to or subtracted from the current ITime.
    • withAddedOrSubtractedMicroseconds

      ITime withAddedOrSubtractedMicroseconds(long microseconds)
      Parameter:
      microseconds -
      Gibt zurück:
      a new ITime with the given microseconds added to or subtracted from the current ITime.
    • withAddedOrSubtractedMilliseconds

      ITime withAddedOrSubtractedMilliseconds(int milliseconds)
      Parameter:
      milliseconds -
      Gibt zurück:
      a new ITime with the given milliseconds added to or subtracted from to the current ITime.
    • withAddedOrSubtractedMinutes

      ITime withAddedOrSubtractedMinutes(int minutes)
      Parameter:
      minutes -
      Gibt zurück:
      a new ITime with the given minutes added to or subtracted from the current ITime.
    • withAddedOrSubtractedSeconds

      ITime withAddedOrSubtractedSeconds(int seconds)
      Parameter:
      seconds -
      Gibt zurück:
      a new ITime with the given seconds added to or subtracted from the current ITime.