File tree 1 file changed +3
-3
lines changed
opennlp-tools/src/main/java/opennlp/tools/util
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public class StringList implements Iterable<String> {
34
34
private final boolean caseSensitive ;
35
35
36
36
/**
37
- * Initializes a {@link StringList} instance.
37
+ * Initializes a {@link StringList} instance. By default, this instance is case-sensitive.
38
38
* <p>
39
39
* Note: <br>
40
40
* Token String will be interned via {@link StringInterners}.
@@ -46,7 +46,7 @@ public StringList(String singleToken) {
46
46
}
47
47
48
48
/**
49
- * Initializes a {@link StringList} instance.
49
+ * Initializes a {@link StringList} instance. By default, this instance is case-sensitive.
50
50
* <p>
51
51
* Note: <br>
52
52
* Token Strings will be interned via {@link StringInterners}.
@@ -66,7 +66,7 @@ public StringList(String... tokens) {
66
66
* Note: <br>
67
67
* Token Strings will be interned via {@link StringInterners}.
68
68
*
69
- * @param isCaseSensitive if a call to {@code equals(...)} should honor case or not.
69
+ * @param isCaseSensitive Whether it will operate case-sensitive, or not.
70
70
* @param tokens The string parts of the new {@link StringList}.
71
71
* Must not be an empty tokens array or {@code null}.
72
72
*
You can’t perform that action at this time.
0 commit comments