Skip to content

Commit dc6a250

Browse files
committed
Add some more Javadoc
1 parent 022f1fb commit dc6a250

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed
Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
package org.nibor.autolink;
22

3+
/**
4+
* Type of extracted link.
5+
*/
36
public enum LinkType {
4-
URL, EMAIL
7+
/**
8+
* URL such as {@code http://example.com}
9+
*/
10+
URL,
11+
/**
12+
* Email address such as {@code foo@example.com}
13+
*/
14+
EMAIL
515
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/**
2+
* Extract links such as URLs and email addresses from plain text. See {@link org.nibor.autolink.LinkExtractor} for
3+
* extracting links and {@link org.nibor.autolink.Autolink} for processing links in text.
4+
*/
5+
package org.nibor.autolink;

0 commit comments

Comments
 (0)