aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/tuple
diff options
context:
space:
mode:
authorGary Gregory <gardgregory@gmail.com>2019-05-10 08:58:17 -0400
committerGary Gregory <gardgregory@gmail.com>2019-05-10 08:58:17 -0400
commit992e7cf6c8cb1a83c23f2499efe06856ca8b59c4 (patch)
tree7c1d1ca34b0952658d6150fbfde4976c33f1a527 /src/main/java/org/apache/commons/lang3/tuple
parent90c736c3a052abad03f8b95233f1b0a6227722c5 (diff)
downloadapache-commons-lang-992e7cf6c8cb1a83c23f2499efe06856ca8b59c4.tar.gz
- Javadoc.
- checkstyle.version 8.18 -> 8.20. - [LANG-1458] Add EMPTY_ARRAY constants to classes in org.apache.commons.lang3.tuple
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/tuple')
-rw-r--r--src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java2
-rw-r--r--src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java3
-rw-r--r--src/main/java/org/apache/commons/lang3/tuple/MutablePair.java2
-rw-r--r--src/main/java/org/apache/commons/lang3/tuple/MutableTriple.java3
4 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java b/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java
index 30478da37..39d1effb3 100644
--- a/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java
+++ b/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java
@@ -46,6 +46,8 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
/**
* Returns the empty array singleton that can be assigned without compiler warning.
*
+ * @param <L> the left element type
+ * @param <R> the right element type
* @return the empty array singleton that can be assigned without compiler warning.
*
* @since 3.10.
diff --git a/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java b/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java
index 1453dd565..b35234030 100644
--- a/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java
+++ b/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java
@@ -47,6 +47,9 @@ public final class ImmutableTriple<L, M, R> extends Triple<L, M, R> {
/**
* Returns the empty array singleton that can be assigned without compiler warning.
*
+ * @param <L> the left element type
+ * @param <M> the middle element type
+ * @param <R> the right element type
* @return the empty array singleton that can be assigned without compiler warning.
*
* @since 3.10.
diff --git a/src/main/java/org/apache/commons/lang3/tuple/MutablePair.java b/src/main/java/org/apache/commons/lang3/tuple/MutablePair.java
index c377e809b..d0e06d938 100644
--- a/src/main/java/org/apache/commons/lang3/tuple/MutablePair.java
+++ b/src/main/java/org/apache/commons/lang3/tuple/MutablePair.java
@@ -41,6 +41,8 @@ public class MutablePair<L, R> extends Pair<L, R> {
/**
* Returns the empty array singleton that can be assigned without compiler warning.
*
+ * @param <L> the left element type
+ * @param <R> the right element type
* @return the empty array singleton that can be assigned without compiler warning.
*
* @since 3.10.
diff --git a/src/main/java/org/apache/commons/lang3/tuple/MutableTriple.java b/src/main/java/org/apache/commons/lang3/tuple/MutableTriple.java
index 4a8fe38d6..15db8b9e4 100644
--- a/src/main/java/org/apache/commons/lang3/tuple/MutableTriple.java
+++ b/src/main/java/org/apache/commons/lang3/tuple/MutableTriple.java
@@ -42,6 +42,9 @@ public class MutableTriple<L, M, R> extends Triple<L, M, R> {
/**
* Returns the empty array singleton that can be assigned without compiler warning.
*
+ * @param <L> the left element type
+ * @param <M> the middle element type
+ * @param <R> the right element type
* @return the empty array singleton that can be assigned without compiler warning.
*
* @since 3.10.