Constructs a new CharSet using the set syntax. Each string is merged in with the set. @param set Strings to merge into the initial set @throws NullPointerException if set is null
(final String... set)
| 174 | * @throws NullPointerException if set is {@code null} |
| 175 | */ |
| 176 | protected CharSet(final String... set) { |
| 177 | super(); |
| 178 | for (final String s : set) { |
| 179 | add(s); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | //----------------------------------------------------------------------- |
| 184 | /** |