Package-level declarations

Types

Link copied to clipboard
data class Angle : Quantity<Angle, Angle.Unit>

A quantity describing an angle. (For example, 90 degrees.)

Link copied to clipboard

A quantity describing a distance. (For example, 10 kilometers.)

Link copied to clipboard

A quantity describing a duration. (For example, 10 seconds.)

Link copied to clipboard
Link copied to clipboard

A quantity describing an electric current. (For example, 10 amperes.)

Link copied to clipboard

A quantity describing energy. (For example, 10 kilowatt-hours.)

Link copied to clipboard

A quantity describing energy density. (For example, 4.5 megajoules per liter.)

Link copied to clipboard
data class Force : Quantity<Force, Force.Unit>

A quantity describing force. (For example, 10 newtons.)

Link copied to clipboard

A quantity describing fuel consumption. (For example, 5 liters per 100 kilometers.)

Link copied to clipboard

A quantity describing FuelPerTime. (For example, 0.5 liters per hour.)

Link copied to clipboard
data class Power : Quantity<Power, Power.Unit>

A quantity describing power. (For example, 10 kilowatts.)

Link copied to clipboard
interface Quantity<Q : Quantity<Q, U>, U : Enum<*>> : Comparable<Q> , Serializable

A base interface for quantities. Outlines the common operations to retrieve values and perform mathematical operations.

Link copied to clipboard
data class Speed : Quantity<Speed, Speed.Unit>

A quantity describing speed. (For example, 10 kilometers per hour.)

Link copied to clipboard

A quantity describing voltage. (For example, 10 volts.)

Link copied to clipboard

A quantity describing Volume. (For example, 10 liters.)

Link copied to clipboard

A quantity describing weight. (For example, 10 kilograms.)