er.org.jhotdraw8.collection.0.3.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jhotdraw8.collection Show documentation
Show all versions of org.jhotdraw8.collection Show documentation
JHotDraw8 Utility classes for Collections
The newest version!
/*
* @(#)module-info.java
* Copyright © 2022 The authors and contributors of JHotDraw. MIT License.
*/
import org.jspecify.annotations.NullMarked;
/**
* Defines primitive collections, and various utility classes for collections and iterators.
*/
@SuppressWarnings("module")
@NullMarked
module org.jhotdraw8.collection {
requires transitive static org.jspecify;
requires transitive org.jhotdraw8.icollection;
requires java.logging;
exports org.jhotdraw8.collection.enumerator;
exports org.jhotdraw8.collection.function;
exports org.jhotdraw8.collection.iterator;
exports org.jhotdraw8.collection.mapped;
exports org.jhotdraw8.collection.primitive;
exports org.jhotdraw8.collection.pair;
exports org.jhotdraw8.collection.spliterator;
exports org.jhotdraw8.collection.util;
}