Java Utililty Methods Dictionary Usage

List of utility methods to do Dictionary Usage

Description

The list of methods to do Dictionary Usage are organized into topic(s).

Method

ListupdateConfigurableListField(Dictionary properties, String propertyName)
update Configurable List Field
int index = 0;
List<String> configurableList = new ArrayList<String>();
while (properties.get(propertyName + index) != null) {
    String propertyValue = (String) properties.get(propertyName + index++);
    if (propertyValue != null && !propertyValue.isEmpty())
        configurableList.add(propertyValue);
return configurableList;
...