List of usage examples for java.util Map interface-usage
From source file org.apache.axis2.jaxws.handler.AttachmentsAdapter.java
/**
* The JAX-WS exposes attachment properties whose value is Map<String, DataHandler>. The
* String is the content-id and DataHandler is the data handler representing the attachment.
*
* The JAX-WS MessageContext stores attachments in an Axiom Attachments object located on the JAX-WS
* Message.
From source file org.apache.commons.functor.example.map.FunctoredMap.java
/** * @version $Revision: 1508677 $ $Date: 2013-07-30 19:48:02 -0300 (Tue, 30 Jul 2013) $ */ @SuppressWarnings("unchecked") public class FunctoredMap<K, V> implements Map<K, V> { public FunctoredMap(Map<? super K, ? super V> map) {
From source file com.addthis.hydra.data.query.DiskBackedMap.java
public class DiskBackedMap<T extends DiskBackedMap.DiskObject> implements Map<String, T>, Closeable { private static final Logger log = LoggerFactory.getLogger(DiskBackedMap.class); //private final PageDB<CodableDiskObject> db; // By all rights this should be the above, but generics and inner // classes do not seem to play nice
From source file org.ebayopensource.common.util.Parameters.java
/** * Parameters to simplify the data accessing * * Created by xshao on 9/16/16. */ public interface Parameters<V> extends Map<String, V> {
From source file nl.nn.adapterframework.util.StringTagger.java
/**
* Creates an object with tags and fields from a String.
* Its ideal for name-value pairs and name-value pairs with multivalues.
* It also provides support for quoted values, and recognizes values that are 'function' calls with
* their own parameter list (allowing to ignore any tokens within these lists when parsing).
* <br/><br/>
From source file org.vosao.entity.field.PageAttributesField.java
public class PageAttributesField implements Map<String, String>, Serializable { protected static final Log logger = LogFactory.getLog(PageAttributesField.class); private Map<String, Map<String, String>> data;
From source file com.unboundid.scim2.common.utils.CaseIgnoreMap.java
/** * A case-insensitive String to JsonNode map with insertion-order iteration. */ public class CaseIgnoreMap implements Map<String, JsonNode> { /** * A wrapper around the standard String but compares and hashes them
From source file BucketizedHashtable.java
/**
* This class implements bucketize hashtable, which subdivide the key collection
* stored into several hashtables (buckets) of smaller size. This will reduce
* the contention of hashtable.
* @author Shing Wai Chan
*/
From source file com.qpark.eip.core.spring.AbstractPlaceholderConfigurer.java
/**
* Provides properties loaded by the {@link PropertyPlaceholderConfigurer}
* routines.
*
* @author bhausen
*/
From source file org.alfresco.service.namespace.QNameMap.java
/**
* A Map that holds as it's key a QName stored in it's internal String representation.
* Calls to get and put automatically map the key to and from the QName representation.
*
* @author gavinc
*/