List of usage examples for java.util Map interface-usage
From source file WeakIdentityHashMap.java
/**
* Implements a combination of WeakHashMap and IdentityHashMap.
* Useful for caches that need to key off of a == comparison
* instead of a .equals.
*
* <b>
From source file com.cloudhopper.sxmp.OptionalParamMap.java
/**
* Map<String, Object> for StratusRequest optional params.
* Keys are limited to 255 UTF8 bytes max.
* Objects can be: short, int, long, double, string (32767 UTF8 bytes max)
*
* @author dhoffman
From source file MicroMap.java
/**
* An implementation of the java.util.Map interface which can only hold a single
* object. This is particularly useful to control memory usage in Wicket because
* many containers hold only a single component.
*
* @author Jonathan Locke
From source file cz.autoclient.league_of_legends.maps.GameObjectMap.java
/** * * @author Jakub * @param <T> GameObject is any object loaded from */ public abstract class GameObjectMap<T extends GameObject> extends DataLoader
From source file ezbake.data.graph.blueprints.visibility.PropertyValueMap.java
public class PropertyValueMap implements Map<String, Object> { private final Object value; private final String visibility; private final Boolean delete;
From source file org.jasig.portal.utils.cache.MapCacheProvider.java
/**
* Hides a {@link CacheProviderFacade} behind a the {@link Map} interface. Only the following methods
* are supported:
* <ul>
* <li>{@link #clear()}</li>
* <li>{@link #containsKey(Object)}</li>
From source file org.xmlactions.action.config.IExecContext.java
/**
* A Manager for an Application Context.
* <p>
* This interface is used extensively throughout the framework code. It's purpose is to manage and maintain a set of static data and
* also session and request data.
* </p>
From source file org.apereo.portal.utils.cache.MapCacheProvider.java
/**
* Hides a {@link CacheProviderFacade} behind a the {@link Map} interface. Only the following methods
* are supported:
* <ul>
* <li>{@link #clear()}</li>
* <li>{@link #containsKey(Object)}</li>
From source file de.dhke.projects.cutil.collections.aspect.AspectMap.java
/** * * @author Peter Wullinger <java@dhke.de> */ public class AspectMap<K, V, M extends Map<K, V>> extends AspectCollectionNotifier<Map.Entry<K, V>, Map<K, V>> implements Map<K, V>, IDecorator<M> {
From source file coral.model.ExpData.java
/**
* A class that offers a transparent access to a flat data structure with option
* to save only new/updated values.
*
* @author Markus Schaffner
*