A package with functions and data structures that extend the Java programming language.
Data structures include List, Stack, Queue, Tree, Graph and more.
Provides a lot of additional functions for native data types (mainly char and String).
You can find the full JavaDoc on this site.
There are multiple ways to include this library in your project.
Add the following two snippets somewhere between the <project>
and </project>
tag of your pom.xml
:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.nwawrzyniak</groupId>
<artifactId>nwju</artifactId>
<version>v1.0.1</version>
</dependency>
</dependencies>
The newest version can always be found on the GitHub Releases page.
This can be done via git clone https://github.com/nwawrzyniak/nwju.git
or by downloading the source files
Requests for functions that are general enough to be included in a standard library are welcome and should be reported as an Issue.
I do not take any warranty for the usage of this library, though I intend to maintain this library as well as possible and respond to feedback.