List of usage examples for java.util Map interface-usage
From source file org.apache.axis2.jaxws.handler.SOAPHeadersAdapter.java
/**
* The JAX-WS exposes soap header properties whose value is Map<QName, List<String>>. The
* QName is the name of the header and List<String> are the xml values of the headers for qname.
*
* The JAX-WS MessageContext stores soap headers in an Axiom tree object located on the JAX-WS
* Message.
From source file InsertionOrderedMap.java
/**
* Map with keys iterated in insertion order. This is similar to the Java 1.4
* java.util.LinkedHashMap class, but compatible with earlier JVM versions. It
* also guarantees insertion ordering only for iterating through the key values,
* not for other iterations. This implementation is optimized for insert-only
* maps.
From source file org.codehaus.groovy.grails.web.util.AbstractTypeConvertingMap.java
/**
* An category for use with maps that want type conversion capabilities
*
* Type converting maps have no inherent ordering. Two maps with identical entries
* but arranged in a different order internally are considered equal.
*
From source file com.antsdb.saltedfish.nosql.Row.java
/**
* Row is a read-only view of the raw data stored in the file
*
* data structure of a raw row
*
* 0: byte, version
From source file com.evolveum.midpoint.prism.xnode.MapXNode.java
public class MapXNode extends XNode implements Map<QName, XNode>, Serializable { // We want to maintain ordering, hence the List private List<Entry> subnodes = new ArrayList<>(); public int size() {
From source file org.apache.click.util.MessagesMap.java
/**
* Provides a localized read only messages Map for Page and Control classes.
* <p/>
* A MessagesMap instance is available in each Velocity page using the name
* "<span class="blue">messages</span>".
* <p/>
From source file org.t2framework.commons.util.ArrayMap.java
/**
* Array map.
*
* @author shot
*
* @param <K>
From source file org.apache.poi.hpsf.CustomProperties.java
/**
* Maintains the instances of {@link CustomProperty} that belong to a
* {@link DocumentSummaryInformation}. The class maintains the names of the
* custom properties in a dictionary. It implements the {@link Map} interface
* and by this provides a simplified view on custom properties: A property's
* name is the key that maps to a typed value. This implementation hides
From source file org.jasig.cas.extension.clearpass.EncryptedMapDecorator.java
/**
* Decorator for a map that will hash the key and encrypt the value.
*
* @author Scott Battaglia
* @since 1.0.6
*/
From source file MyMap.java
/** A simple Map implementation, implemented in terms of a
* pair of ArrayLists just to show what a Map has to do (it would
* have been easier, but less informative, to subclass AbstractMap).
* This Map implementation, like TreeSet, guarantees that the
* Map's contents will be kept in ascending element order,
* sorted according to the natural order of the elements;