/** Constructs a UrnSet with URNs from the given collection. */ public UrnSet(Collection<? extends URN> c) { addAll(c); }
public UnmodifiableUrnSet(Set<? extends URN> set) { super.addAll(set); }