Uses of Class
org.threeten.extra.Minutes

Packages that use Minutes
Package
Description
Value types and utilities that extend java.time.*.
  • Uses of Minutes in org.threeten.extra

    Fields in org.threeten.extra declared as Minutes
    Modifier and Type
    Field
    Description
    static final Minutes
    Minutes.ZERO
    A constant for zero minutes.
    Methods in org.threeten.extra that return Minutes
    Modifier and Type
    Method
    Description
    Minutes.abs()
    Returns a copy of this duration with a positive length.
    static Minutes
    Minutes.between(Temporal startInclusive, Temporal endExclusive)
    Obtains a Minutes consisting of the number of minutes between two temporals.
    Minutes.dividedBy(int divisor)
    Returns an instance with the amount divided by the specified divisor.
    static Minutes
    Minutes.from(TemporalAmount amount)
    Obtains an instance of Minutes from a temporal amount.
    Minutes.minus(int minutes)
    Returns a copy of this amount with the specified number of minutes subtracted.
    Minutes.minus(TemporalAmount amountToSubtract)
    Returns a copy of this amount with the specified amount subtracted.
    Minutes.multipliedBy(int scalar)
    Returns an instance with the amount multiplied by the specified scalar.
    Minutes.negated()
    Returns an instance with the amount negated.
    static Minutes
    Minutes.of(int minutes)
    Obtains a Minutes representing a number of minutes.
    static Minutes
    Minutes.ofHours(int hours)
    Obtains a Minutes representing the number of minutes equivalent to a number of hours.
    static Minutes
    Minutes.parse(CharSequence text)
    Obtains a Minutes from a text string such as PTnM.
    Minutes.plus(int minutes)
    Returns a copy of this amount with the specified number of minutes added.
    Minutes.plus(TemporalAmount amountToAdd)
    Returns a copy of this amount with the specified amount added.
    Methods in org.threeten.extra with parameters of type Minutes
    Modifier and Type
    Method
    Description
    int
    Minutes.compareTo(Minutes otherAmount)
    Compares this amount to the specified Minutes.