[docs] Add missing JavaDocs (#6146)

This commit is contained in:
Tyler Veness
2024-01-04 08:38:06 -08:00
committed by GitHub
parent 6e58db398d
commit f29a7d2e50
145 changed files with 1106 additions and 94 deletions

View File

@@ -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;
}