MCPcopy
hub / github.com/apache/commons-lang / CharSet

Method CharSet

src/main/java/org/apache/commons/lang3/CharSet.java:176–181  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 /**

Callers

nothing calls this directly

Calls 1

addMethod · 0.95

Tested by

no test coverage detected