mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
[docs] Add missing JavaDocs (#6146)
This commit is contained in:
@@ -45,86 +45,191 @@ public interface Nat<T extends Num> {
|
||||
*/
|
||||
int getNum();
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 0.
|
||||
*
|
||||
* @return The Nat instance for 0.
|
||||
*/
|
||||
static Nat<N0> N0() {
|
||||
return N0.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 1.
|
||||
*
|
||||
* @return The Nat instance for 1.
|
||||
*/
|
||||
static Nat<N1> N1() {
|
||||
return N1.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 2.
|
||||
*
|
||||
* @return The Nat instance for 2.
|
||||
*/
|
||||
static Nat<N2> N2() {
|
||||
return N2.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 3.
|
||||
*
|
||||
* @return The Nat instance for 3.
|
||||
*/
|
||||
static Nat<N3> N3() {
|
||||
return N3.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 4.
|
||||
*
|
||||
* @return The Nat instance for 4.
|
||||
*/
|
||||
static Nat<N4> N4() {
|
||||
return N4.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 5.
|
||||
*
|
||||
* @return The Nat instance for 5.
|
||||
*/
|
||||
static Nat<N5> N5() {
|
||||
return N5.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 6.
|
||||
*
|
||||
* @return The Nat instance for 6.
|
||||
*/
|
||||
static Nat<N6> N6() {
|
||||
return N6.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 7.
|
||||
*
|
||||
* @return The Nat instance for 7.
|
||||
*/
|
||||
static Nat<N7> N7() {
|
||||
return N7.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 8.
|
||||
*
|
||||
* @return The Nat instance for 8.
|
||||
*/
|
||||
static Nat<N8> N8() {
|
||||
return N8.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 9.
|
||||
*
|
||||
* @return The Nat instance for 9.
|
||||
*/
|
||||
static Nat<N9> N9() {
|
||||
return N9.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 10.
|
||||
*
|
||||
* @return The Nat instance for 10.
|
||||
*/
|
||||
static Nat<N10> N10() {
|
||||
return N10.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 11.
|
||||
*
|
||||
* @return The Nat instance for 11.
|
||||
*/
|
||||
static Nat<N11> N11() {
|
||||
return N11.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 12.
|
||||
*
|
||||
* @return The Nat instance for 12.
|
||||
*/
|
||||
static Nat<N12> N12() {
|
||||
return N12.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 13.
|
||||
*
|
||||
* @return The Nat instance for 13.
|
||||
*/
|
||||
static Nat<N13> N13() {
|
||||
return N13.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 14.
|
||||
*
|
||||
* @return The Nat instance for 14.
|
||||
*/
|
||||
static Nat<N14> N14() {
|
||||
return N14.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 15.
|
||||
*
|
||||
* @return The Nat instance for 15.
|
||||
*/
|
||||
static Nat<N15> N15() {
|
||||
return N15.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 16.
|
||||
*
|
||||
* @return The Nat instance for 16.
|
||||
*/
|
||||
static Nat<N16> N16() {
|
||||
return N16.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 17.
|
||||
*
|
||||
* @return The Nat instance for 17.
|
||||
*/
|
||||
static Nat<N17> N17() {
|
||||
return N17.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 18.
|
||||
*
|
||||
* @return The Nat instance for 18.
|
||||
*/
|
||||
static Nat<N18> N18() {
|
||||
return N18.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 19.
|
||||
*
|
||||
* @return The Nat instance for 19.
|
||||
*/
|
||||
static Nat<N19> N19() {
|
||||
return N19.instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Nat instance for 20.
|
||||
*
|
||||
* @return The Nat instance for 20.
|
||||
*/
|
||||
static Nat<N20> N20() {
|
||||
return N20.instance;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user