I have a series of application properties which all have different types.
The types could include, booleans, dates, timestamps, or strings.
I need to be abl
Since you have a requirement of storing and reading various properties of different types like boolean, integers, etc. I think the java.util.prefs API is a good choice for you. It allows you to store and read various data types.
java.util.prefs
Here's the API documentation