Uses of Interface
javax.measure.Unit

Packages that use Unit
Package
Description
Specifies Java packages for the programmatic, type safe handling of quantities and their expression as values of units.
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
[OPTIONAL] The Units of Measurement SPI.
  • Uses of Unit in javax.measure

    Methods in javax.measure that return Unit
    Modifier and Type
    Method
    Description
    Unit.alternate(String symbol)
    Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature but of the same dimensions.
    <T extends Quantity<T>>
    Unit<T>
    Unit.asType(Class<T> type)
    Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and this unit's dimension do not match.
    Unit.divide(double divisor)
    Returns the result of dividing this unit by an approximate divisor.
    Unit<?>
    Unit.divide(Unit<?> divisor)
    Returns the quotient of this unit with the one specified.
    Returns the unscaled system unit from which this unit is derived.
    Quantity.getUnit()
    Returns the unit of this Quantity.
    Unit<?>
    Unit.inverse()
    Returns the inverse of this unit.
    Unit.multiply(double multiplier)
    Returns the result of multiplying this unit by the specified factor.
    Unit<?>
    Unit.multiply(Unit<?> multiplier)
    Returns the product of this unit with the one specified.
    Unit<?>
    Unit.pow(int n)
    Returns a unit equals to this unit raised to an exponent.
    Unit<?>
    Unit.root(int n)
    Returns a unit equals to the given root of this unit.
    Unit.shift(double offset)
    Returns the result of setting the origin of the scale of measurement to the given value.
    Unit.transform(UnitConverter operation)
    Returns the unit derived from this unit using the specified converter.
    Methods in javax.measure that return types with arguments of type Unit
    Modifier and Type
    Method
    Description
    Map<? extends Unit<?>,Integer>
    Returns the base units and their exponent whose product is this unit, or null if this unit is a base unit (not a product of existing units).
    Methods in javax.measure with parameters of type Unit
    Modifier and Type
    Method
    Description
    Unit<?>
    Unit.divide(Unit<?> divisor)
    Returns the quotient of this unit with the one specified.
    Unit.getConverterTo(Unit<Q> that)
    Returns a converter of numeric values from this unit to another unit of same type.
    Unit.getConverterToAny(Unit<?> that)
    Returns a converter from this unit to the specified unit of type unknown.
    boolean
    Unit.isCompatible(Unit<?> that)
    Indicates if this unit is compatible with the unit specified.
    Unit<?>
    Unit.multiply(Unit<?> multiplier)
    Returns the product of this unit with the one specified.
    Quantity.to(Unit<Q> unit)
    Returns this Quantity converted into another (compatible) Unit.
  • Uses of Unit in javax.measure.format

    Methods in javax.measure.format that return Unit
    Modifier and Type
    Method
    Description
    Unit<?>
    UnitFormat.parse(CharSequence csq)
    Parses the text into an instance of Unit.
    Methods in javax.measure.format with parameters of type Unit
    Modifier and Type
    Method
    Description
    UnitFormat.format(Unit<?> unit)
    Formats the specified Unit.
    UnitFormat.format(Unit<?> unit, Appendable appendable)
    Formats the specified Unit.
    void
    UnitFormat.label(Unit<?> unit, String label)
    Attaches a system-wide label to the specified unit.
  • Uses of Unit in javax.measure.spi

    Methods in javax.measure.spi that return Unit
    Modifier and Type
    Method
    Description
    QuantityFactory.getSystemUnit()
    Returns the system unit for quantities produced by this factory or null if unknown.
    <Q extends Quantity<Q>>
    Unit<Q>
    SystemOfUnits.getUnit(Class<Q> quantityType)
    Returns the default unit for the specified quantity.
    Methods in javax.measure.spi that return types with arguments of type Unit
    Modifier and Type
    Method
    Description
    Set<? extends Unit<?>>
    SystemOfUnits.getUnits()
    Returns a read only view over the units explicitly defined by this system.
    Set<? extends Unit<?>>
    SystemOfUnits.getUnits(Dimension dimension)
    Returns the units defined in this system having the specified dimension (convenience method).
    Methods in javax.measure.spi with parameters of type Unit
    Modifier and Type
    Method
    Description
    QuantityFactory.create(Number value, Unit<Q> unit)
    Returns the quantity for the specified number stated in the specified unit.