(String... components)
| 261 | } |
| 262 | |
| 263 | public static Trie fromStrings(String... components) { |
| 264 | Trie r = ROOT; |
| 265 | for(int i=0;i!=components.length;++i) { |
| 266 | r = r.append(components[i]); |
| 267 | } |
| 268 | return r; |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * Construct a Trie from a native string, where the separator is determined by |