All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.intarsys.tools.collection.Entry Maven / Gradle / Ivy

There is a newer version: 4.11
Show newest version
package de.intarsys.tools.collection;

import java.util.Map;

public class Entry implements Map.Entry {

	private K key;

	private V value;

	public Entry(K key, V value) {
		super();
		this.key = key;
		this.value = value;
	}

	@Override
	public K getKey() {
		return key;
	}

	@Override
	public V getValue() {
		return value;
	}

	@Override
	public V setValue(V value) {
		V oldValue = this.value;
		this.value = value;
		return oldValue;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy