Enum Class TimeUnit

java.lang.Object
java.lang.Enum<TimeUnit>
com.github.darksoulq.abyssallib.server.scheduler.TimeUnit
All Implemented Interfaces:
Serializable, Comparable<TimeUnit>, Constable, TemporalUnit

public enum TimeUnit extends Enum<TimeUnit> implements TemporalUnit
  • Enum Constant Details

    • MILLISECONDS

      public static final TimeUnit MILLISECONDS
    • TICKS

      public static final TimeUnit TICKS
    • SECONDS

      public static final TimeUnit SECONDS
    • MINUTES

      public static final TimeUnit MINUTES
    • HOURS

      public static final TimeUnit HOURS
    • DAYS

      public static final TimeUnit DAYS
  • Method Details

    • values

      public static TimeUnit[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TimeUnit valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • toMillis

      public long toMillis(long amount)
    • toTicks

      public long toTicks(long amount)
    • toSeconds

      public long toSeconds(long amount)
    • toMinutes

      public long toMinutes(long amount)
    • toHours

      public long toHours(long amount)
    • toDays

      public long toDays(long amount)
    • convert

      public long convert(long amount, TimeUnit targetUnit)
    • getDuration

      public Duration getDuration()
      Specified by:
      getDuration in interface TemporalUnit
    • isDurationEstimated

      public boolean isDurationEstimated()
      Specified by:
      isDurationEstimated in interface TemporalUnit
    • isDateBased

      public boolean isDateBased()
      Specified by:
      isDateBased in interface TemporalUnit
    • isTimeBased

      public boolean isTimeBased()
      Specified by:
      isTimeBased in interface TemporalUnit
    • addTo

      public <R extends Temporal> R addTo(R temporal, long amount)
      Specified by:
      addTo in interface TemporalUnit
    • between

      public long between(Temporal temporal1Inclusive, Temporal temporal2Exclusive)
      Specified by:
      between in interface TemporalUnit