A library to simplify working with Java, which includes basic functions
Install
- With Maven
<dependency> <groupId>com.github.levkoposc</groupId> <artifactId>jtools</artifactId> <version>0.2</version> </dependency>
- With Gradle
dependencies { compile 'com.github.levkoposc:jtools:0.2' }
Quick start
To quickly start working with the library, import Tools class with static fields
import static com.github.levkoposc.Tools.*;
OR extend your class from Tools (from 0.3)
public class Main extends Tools