Java’s missing TreeMap
One thing I have always found lacking in Java collections/containers is TreeMap. A simple class that takes a hierarchical approach to mapping data to a node. Given a hierarchical string…
Team to Create Outside the Box
One thing I have always found lacking in Java collections/containers is TreeMap. A simple class that takes a hierarchical approach to mapping data to a node. Given a hierarchical string…
Continuing my series on advanced classes that are handy to have around when needed. I have created the UnitOfTime. This class is used to convert a number of milliseconds over…
Not very often do I need to take a number of bytes and convert them into the most appropriate measurement. This came up recently on a project and I thought…
Well I was bored one night after creating the UnitOfMemory and decided what else could be useful in the future. I came up with a UnitOfDistance to convert distances over…
Every get tired of converting from Dates to Calendars and then need to use SimpleDateFormat to output it as a String? How about parsing a string and getting a Date…
I have not done any work prior to using reflection in my Java projects. A project I was working on I needed to be able to access the Getter/Setter of…
In today’s digital era, data comes in various formats, with JSON (JavaScript Object Notation) being one of the most popular for representing structured data. Manipulating and processing JSON data efficiently…