List of usage examples for java.util AbstractMap subclass-usage
From source file org.alfresco.util.OpenOfficeCommandEnv.java
/** * A map giving the environment openoffice or libreoffice commands require to start. * * @author Alan Davis */ public class OpenOfficeCommandEnv extends AbstractMap<String, String> {
From source file org.fhcrc.cpl.toolbox.datastructure.BoundMap.java
public class BoundMap extends AbstractMap<String, Object> implements Serializable { static final HashMap<Class, HashMap<String, BoundProperty>> _savedPropertyMaps = new HashMap<Class, HashMap<String, BoundProperty>>(); protected Object _bean; transient protected HashMap<String, Object> _map = new HashMap<String, Object>(); transient protected HashMap<String, BoundProperty> _properties;
From source file org.alfresco.util.OpenOfficeCommandLine.java
/**
* A map giving the open office start up command, which depends on the version of
* OpenOffice or LibreOffice.
*
* @author Alan Davis
*/
From source file org.alfresco.service.cmr.repository.TransformationOptionLimitsMap.java
/**
* Helper class to create an immutable
* {@code Map<String, Map<String, TransformationOptionLimits>>}, keyed on source and target mimetypes. Used to
* define transformation limits, without having to specify lots of spring XML. For example:
*
* <pre>
From source file org.browsermob.proxy.jetty.jetty.servlet.Holder.java
/** * @version $Id: Holder.java,v 1.18 2005/08/13 00:01:27 gregwilkins Exp $ * @author Greg Wilkins */ public class Holder extends AbstractMap implements LifeCycle, Serializable { private static Log log = LogFactory.getLog(Holder.class);
From source file net.lightbody.bmp.proxy.jetty.jetty.servlet.Holder.java
/** * @version $Id: Holder.java,v 1.18 2005/08/13 00:01:27 gregwilkins Exp $ * @author Greg Wilkins */ public class Holder extends AbstractMap implements LifeCycle, Serializable { private static Log log = LogFactory.getLog(Holder.class);
From source file org.cloudfoundry.identity.statsd.MBeanMap.java
@SuppressWarnings("restriction") public class MBeanMap extends AbstractMap<String, Object> { private static Log logger = LogFactory.getLog(MBeanMap.class); private Map<String, Object> map = new HashMap<String, Object>();
From source file org.openqa.jetty.jetty.servlet.Holder.java
/** * @version $Id: Holder.java,v 1.18 2005/08/13 00:01:27 gregwilkins Exp $ * @author Greg Wilkins */ public class Holder extends AbstractMap implements LifeCycle, Serializable { private static Log log = LogFactory.getLog(Holder.class);
From source file CharArrayMap.java
/**
* A simple class that stores key Strings as char[]'s in a hash table. Note that
* this is not a general purpose class. For example, it cannot remove items from
* the map, nor does it resize its hash table to be smaller, etc. It is designed
* to be quick to retrieve items by char[] keys without the necessity of
* converting to a String first.
From source file com.google.api.client.util.ArrayMap.java
/**
* Memory-efficient map of keys to values with list-style random-access semantics.
* <p>
* Conceptually, the keys and values are stored in a simpler array in order to minimize memory use
* and provide for fast access to a key/value at a certain index (for example {@link #getKey(int)}).
* However, traditional mapping operations like {@link #get(Object)} and