The config framework has the ability to retrieve values as a String, Integer, Double, Float and Boolean, but notLong. We need to add support for the latter as well. Also make sure to update theConfigurationValueTypeenum and thegetType` function of the util.
Optional<Long> value = ConfigurationUtil.getInstance().getLong("key");
The config framework has the ability to retrieve values as a
String
,Integer
,Double
,Float
andBoolean, but not
Long. We need to add support for the latter as well. Also make sure to update the
ConfigurationValueTypeenum and the
getType` function of the util.