This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
     new bc77f71  Javadoc.
bc77f71 is described below

commit bc77f715e8274a58b8d206c929d2945a084a83d7
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 28 10:21:42 2020 -0400

    Javadoc.
---
 src/main/java/org/apache/commons/text/lookup/BiStringLookup.java | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java 
b/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java
index 3a8828a..a848634 100644
--- a/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java
+++ b/src/main/java/org/apache/commons/text/lookup/BiStringLookup.java
@@ -17,6 +17,9 @@
 
 package org.apache.commons.text.lookup;
 
+import java.util.function.BiFunction;
+import java.util.function.Function;
+
 /**
  * Lookups a String key for a String value.
  * <p>
@@ -27,7 +30,11 @@ package org.apache.commons.text.lookup;
  * For example, it would be possible to implement a lookup that used the key 
as a primary key, and looked up the value
  * on demand from the database.
  * </p>
- *
+ * <p>
+ * Like {@link BiFunction} is a variant of {@link Function}, this {@code 
BiStringLookup} is a variant of
+ * {@link StringLookup}.
+ * </p>
+ * 
  * @param <U> The second argument type.
  *
  * @since 1.9

Reply via email to