Property Class Generator
Following my article on Dynamic and Parsable Properties, I decided to write a utility class that would parse a properties file and generate the class for it. This way, if you have a particularly large properties file, you don’t have to spend too much time on the class to read the properties.
Dynamic and Parsable Properties
The Properties class allows you to store and retrieve static String property types from files. I wrote two classes that makes Properties “dynamic” (so that you can reference the values of other keys) and parsable (so that instead of returning all String types, you can parse other supported types).

Continue Reading