Skip to content

Latest commit

 

History

History
16 lines (16 loc) · 826 Bytes

README.md

File metadata and controls

16 lines (16 loc) · 826 Bytes

JavaLibraries

Useful methods that could be implemented into a wide variety of Java Projects.

util

arrays

ArrayToString - Methods for formatting 1D and 2D arrays into Strings

cycle

CyclicList - A variation on LinkedLists where going out of bounds through the top or bottom will pop you out on the other side
CyclicIntList - A CyclicList<Integer> which uses a more efficient implementation of the CyclicList for use on numbers rather than objects

math

Random - Provides easy to use methods to generate ints/doubles in a customizable range
Round - Provides easy to use methods for rounding doubles with different specifications

strings

StringFormatter - Allows for converting a String to a String of a different length by either cutting the ends off or adding white-space of the specified character