2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2019-08-18 18:00:40 -04:00
|
|
|
|
2021-05-01 15:53:30 +00:00
|
|
|
package edu.wpi.first.math;
|
2019-08-18 18:00:40 -04:00
|
|
|
|
2020-12-29 22:45:16 -08:00
|
|
|
/** A number expressed as a java class. */
|
2019-08-18 18:00:40 -04:00
|
|
|
public abstract class Num {
|
|
|
|
|
/**
|
|
|
|
|
* The number this is backing.
|
|
|
|
|
*
|
|
|
|
|
* @return The number represented by this class.
|
|
|
|
|
*/
|
|
|
|
|
public abstract int getNum();
|
|
|
|
|
}
|