blob: 8085f3928291e0fe266ecc862ad1093e1c1cf778 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// dmccann - June 4/2009 - 2.0 - Initial implementation
package org.eclipse.persistence.testing.jaxb.binder.adapter;
import java.util.Map;
import java.util.TreeMap;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;
/**
* Adapter that converts between Map<Integer, String> and MapEntry.
*
*/
public class MapEntryAdapter extends XmlAdapter<MapEntry, Map<Integer, String>> {
@Override
public Map<Integer, String> unmarshal(MapEntry mapEntry) throws Exception {
Map<Integer, String> map = new TreeMap<Integer, String>();
while (mapEntry != null) {
map.put(mapEntry.key, mapEntry.value);
mapEntry = mapEntry.nextValue;
}
return map;
}
@Override
public MapEntry marshal(Map<Integer, String> map) throws Exception {
MapEntry lastEntry = null;
for (Map.Entry<Integer, String> mapEntry : map.entrySet()) {
lastEntry = new MapEntry(mapEntry.getKey(), mapEntry.getValue(), lastEntry);
}
return lastEntry;
}
}