blob: 2bd940b628e1d76285e98b48499b27532455d0a0 [file] [log] [blame]
Austin Schuh812d0d12021-11-04 20:16:48 -07001// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
Maxwell Henderson80bec322024-01-09 15:48:44 -08005// THIS FILE WAS AUTO-GENERATED BY ./wpimath/generate_numbers.py. DO NOT MODIFY
6
Austin Schuh812d0d12021-11-04 20:16:48 -07007package edu.wpi.first.math.numbers;
8
9import edu.wpi.first.math.Nat;
10import edu.wpi.first.math.Num;
11
Maxwell Henderson80bec322024-01-09 15:48:44 -080012/** A class representing the number {{ num }}. */
Austin Schuh812d0d12021-11-04 20:16:48 -070013public final class N{{ num }} extends Num implements Nat<N{{ num }}> {
Maxwell Henderson80bec322024-01-09 15:48:44 -080014 private N{{ num }}() {}
Austin Schuh812d0d12021-11-04 20:16:48 -070015
16 /**
17 * The integer this class represents.
18 *
19 * @return The literal number {{ num }}.
Maxwell Henderson80bec322024-01-09 15:48:44 -080020 */
Austin Schuh812d0d12021-11-04 20:16:48 -070021 @Override
22 public int getNum() {
23 return {{ num }};
24 }
25
Maxwell Henderson80bec322024-01-09 15:48:44 -080026 /** The singleton instance of this class. */
Austin Schuh812d0d12021-11-04 20:16:48 -070027 public static final N{{ num }} instance = new N{{ num }}();
28}