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

org.springframework.binding.util.MapAdaptable Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package org.springframework.binding.util;

import java.util.Map;

/**
 * An object whose contents are capable of being exposed as an unmodifiable map.
 * @author Keith Donald
 */
public interface MapAdaptable {

	/**
	 * Returns this object's contents as a {@link Map}. The returned map cannot
	 * be modified.
	 * 

* Warning: this operation may be called frequently; if so care should be * taken so that the map contents (if calculated) be cached as appropriate. * @return the object's contents as a map. */ public Map getMap(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy