In short, if you want to write a map of e.g. constants in Java, which in e.g. Python and Javascript you would write as a literal,
T<String,String> CONSTANTS =
{
"CONSTANT_NAME_0": CONSTANT_VALUE_0 ,
"CONSTANT_NAME_1": CONSTANT_VALUE_1 ,
"CONSTANT_NAME_2": CONSTANT_VALUE_2 ,
//...
} ;
is there a Class or any preset Object that you can use for writing a data structure like that?
Constants? I’d use an enum.
Value for e.g.
NAME_2can be obtained as follows:Only give the enum a bit more sensible name, e.g.
Settings,Defaults, etc, whatever those name/value pairs actually represent.