Using theConfiginterface, you could writeconf.getInt("foo.bar"). Thefoo.barstring is called apath expression(HOCON.mdhas the syntax details for these expressions). Iterating over thisConfig, you would get two entries;"foo.bar" : 42and"foo.baz" : 43. When iterating aConfigyou will not...