File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
enigma/src/main/java/org/quiltmc/enigma/util/multi_trie Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1010/**
1111 * A {@link MutableMultiTrie} that associates sequences of characters with values of type {@code V}.
1212 *
13- * <p> Adds convenience methods for accessing contents by passing a {@link String} instead of passing individual
14- * characters to nodes:
13+ * <p> Adds {@link String}/{@link Character}-specific convenience methods for accessing its contents:
1514 * <ul>
1615 * <li> {@link #get(String)}
16+ * <li> {@link #getIgnoreCase(String)}
1717 * <li> {@link #put(String, Object)}
1818 * <li> {@link #remove(String, Object)}
1919 * <li> {@link #removeAll(String)}
20+ * <li> {@link CharacterNode#nextIgnoreCase(Character)}
2021 * </ul>
2122 *
22- * <p> {@linkplain #getView() Views} also provide a {@link #get(String)} method.
23+ * <p> {@linkplain #getView() Views} also provide {@link View#get(String) get} and
24+ * {@link View#getIgnoreCase(String) getIgnoreCase} methods.
2325 *
2426 * @param <V> the type of values
2527 * @param <B> the type of branch nodes
You can’t perform that action at this time.
0 commit comments