Example usage for java.util Dictionary subclass-usage

List of usage examples for java.util Dictionary subclass-usage

Introduction

In this page you can find the example usage for java.util Dictionary subclass-usage.

Usage

From source file edu.northwestern.bioinformatics.studycalendar.tools.MapBasedDictionary.java

/**
 * Facade for using a Map where a dictionary is required without
 * Hashtable's no-null values restriction.
 *
 * @author Rhett Sutphin
 */

From source file org.eclipse.swordfish.core.util.MapBasedDictionary.java

/**
 * Implementation taken from Spring DM
 * 
 * Dictionary implementation backed by a map instance. While the JDK provides a
 * Dictionary implementation through Hashtable, the class itself is always
 * synchronized and does not maintain the internal order.

From source file ArrayDictionary.java

/**
 * Random-access dictionary:
 * like a dictionary but with a certain Vector-ness to it
 * Besides all the methods from Dictionary, it also has methods that
 * permit direct access to the nth element or nth key.
 * Should be used with care...it's not too well tested yet, and it

From source file uk.ac.gda.util.dictionary.MapBasedDictionary.java

@SuppressWarnings("rawtypes")
public class MapBasedDictionary extends Dictionary implements Map {

    private Map map;

    public void setMap(Map map) {

From source file ArrayMap.java

/**
 * This class exports an Object[] array as a dictionary
 * 
 * @author Cristian Bogdan
 */
public class ArrayMap extends Dictionary<String, Object> {

From source file org.codice.ddf.configuration.DictionaryMap.java

/**
 * A HashMap based Dictionary for use with OSGI methods requiring a Dictionary
 *
 * @param <K>
 * @param <V>
 */