001// Copyright (c) FIRST and other WPILib contributors.
002// Open Source Software; you can modify and/or share it under the terms of
003// the WPILib BSD license file in the root directory of this project.
004
005package edu.wpi.first.units;
006
007/**
008 * Unit of temperature dimension.
009 *
010 * <p>This is the base type for units of temperature dimension. It is also used to specify the
011 * dimension for {@link Measure}: <code>Measure&lt;Temperature&gt;</code>.
012 *
013 * <p>Actual units (such as {@link Units#Celsius} and {@link Units#Fahrenheit}) can be found in the
014 * {@link Units} class.
015 */
016public class Temperature extends Unit<Temperature> {
017  Temperature(
018      Temperature baseUnit,
019      UnaryFunction toBaseConverter,
020      UnaryFunction fromBaseConverter,
021      String name,
022      String symbol) {
023    super(baseUnit, toBaseConverter, fromBaseConverter, name, symbol);
024  }
025}