2024-09-07 13:59:29 -04: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.
|
|
|
|
|
|
|
|
|
|
// THIS FILE WAS AUTO-GENERATED BY ./wpiunits/generate_units.py. DO NOT MODIFY
|
|
|
|
|
|
|
|
|
|
package edu.wpi.first.units.measure;
|
|
|
|
|
|
|
|
|
|
import static edu.wpi.first.units.Units.*;
|
|
|
|
|
import edu.wpi.first.units.*;
|
|
|
|
|
|
2025-08-08 23:04:02 -07:00
|
|
|
@SuppressWarnings({"unchecked", "cast", "checkstyle"})
|
2024-09-07 13:59:29 -04:00
|
|
|
public record Immutable{{ helpers['type_decl'](name) }}(double magnitude, double baseUnitMagnitude, {{ helpers['mtou'](name) }} unit) implements {{ helpers['type_usage'](name) }} {
|
|
|
|
|
@Override
|
|
|
|
|
public {{ helpers['type_usage'](name) }} copy() {
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return toShortString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean equals(Object o) {
|
|
|
|
|
return o instanceof Measure<?> m && isEquivalent(m);
|
|
|
|
|
}
|
|
|
|
|
}
|