*/
public ListIterator getChargingCollectionFunctionAddresses() {
Iterator li = this.parameters.iterator();
ListIterator ccfLIST = null;
NameValue nv;
while (li.hasNext()) {
nv = (NameValue) li.next();
if (nv.getName().equalsIgnoreCase(ParameterNamesIms.CCF)) {
NameValue ccfNV = new NameValue();
ccfNV.setName(nv.getName());
ccfNV.setValueAsObject(nv.getValueAsObject());
ccfLIST.add(ccfNV);
}
}