An open API service indexing awesome lists of open source software.

https://github.com/pklaschka/ljlutils

A little library with a few simple things I often need in Java.
https://github.com/pklaschka/ljlutils

java java-8 java-library

Last synced: over 1 year ago
JSON representation

A little library with a few simple things I often need in Java.

Awesome Lists containing this project

README

          

# LJLutils

[![Stable: v1.0.3 Release](https://img.shields.io/badge/stable%20version-v1.0.3%20release-green.svg)](https://github.com/pklaschka/LJLutils/releases/tag/v1.0.3)

## What it is
LJLutils is a Java Class Library that is supposed to help developers developing faster by having methods like visualizing tree-structures in the console by automatically indenting them and so on.
It will be continually extended as there are more things developed by the author, which he thinks are worthy of putting into this library.

## Topics already adressed by this library
- Console Printing
- Physics and Vector Calculations (WIP)
- Error Messages and Management

## New Features
### ErrorManager
**Dealing with errors was never easier…**

The ``ErrorManager`` allows for easy handling of costom errors and their displaying to the user. One of the biggest features is the automatic handling of errorcodes and -messages as well as displaying different informations to the developer and the end user. This makes dealing with many error messages much simpler, as ``getRegisteredErrorsList()`` easily gives you an easy list with all your error codes explained for the current version.

## And Last but not least:

I wish you success and fun working with this library.
```Java
public class Quote {
public void EinsteinOnceSaid() {
System.out.println("Everything Should Be Made as Simple as Possible, But Not Simpler");
}
}
```