Java Platform 1.2
Beta 4

Uses of Interface
java.util.Map

Packages that use Map
com.sun.java.swing Provides a set of "lightweight" (all-Java
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images.  
java.awt.datatransfer Provides interfaces and classes for transferring data between and within applications.  
java.awt.font Provides classes and interface relating to fonts.  
java.security Provides the classes and interfaces for the security framework.  
java.sql Provides the JDBC package.  
java.text Provides classes and interfaces for handling text, dates, numbers, and messages in a manner independent of natural languages.  
java.util Provides useful utilities for data structures, date, time, internationalization, events (root interfaces), a simple string tokenizer, a random-number generator, observers, properties and exceptions.  
java.util.jar Provides classes for creating and reading JAR files.  
 

Uses of Map in com.sun.java.swing
 

Classes in com.sun.java.swing that implement Map
  UIDefaults
          A table of defaults for Swing components.
 

Uses of Map in java.awt
 

Fields in java.awt declared as Map
protected  Map Toolkit.desktopProperties
           
 

Methods in java.awt that return Map
 Map Font.getAttributes()
          Returns a map of font attributes available in this font.
 

Methods in java.awt with parameters of type Map
static Font Font.getFont(Map attributes)
          Returns a font appropriate to this attribute set.
 Font Font.deriveFont(Map attributes)
          Creates a new Font object by replicating the current Font object with a new set of font attributes associated with it.
abstract  Font[] GraphicsEnvironment.getFonts(Map attributes)
          Returns an array containing a instances of all fonts available in this environment which match the attributes specified in the Map.
 

Constructors in java.awt with parameters of type Map
Font.Font(Map attributes)
          Create a new font with the specified attributes
 

Uses of Map in java.awt.datatransfer
 

Methods in java.awt.datatransfer that return Map
 Map FlavorMap.getNativesForFlavors(DataFlavor[] flavors)
          map flavors to native data types names
 Map FlavorMap.getFlavorsForNatives(String[] natives)
          map natives to corresponding flavors
 Map SystemFlavorMap.getNativesForFlavors(DataFlavor[] flavors)
          map flavors to native data types names
 Map SystemFlavorMap.getFlavorsForNatives(String[] natives)
          map natives to corresponding flavors
 

Uses of Map in java.awt.font
 

Constructors in java.awt.font with parameters of type Map
TextLayout.TextLayout(String string, Map attributes, FontRenderContext frc)
          Construct a layout from a string and an attribute set.
 

Uses of Map in java.security
 

Classes in java.security that implement Map
  Provider
          This class represents a "provider" for the Java Security API, where a provider implements some or all parts of Java Security, including: Algorithms (such as DSA, RSA, MD5 or SHA-1).
 

Uses of Map in java.sql
 

Methods in java.sql that return Map
 Map Connection.getTypeMap()
          JDBC 2.0   * Get the type-map object associated with this connection.
 

Methods in java.sql with parameters of type Map
 Object Array.getArray(Map map)
          Retrieve the contents of the SQL array designated by this object.
 Object Array.getArray(long index, int count, Map map)
          Like getArray() above, but returns an array containing a slice of the SQL array, beginning with the given @index and containing up to @count successive elements of the SQL array.
 ResultSet Array.getResultSet(Map map)
          Materialize the item designated by the Array as a ResultSet that contains a row for each element of the Array.
 ResultSet Array.getResultSet(long index, int count, Map map)
          Materialize the designated sub-array as a ResultSet that contains a row for each element of the sub-array.
 Object ResultSet.getObject(int i, Map map)
          JDBC 2.0 Returns the value of column @i as a Java object.
 Object ResultSet.getObject(String colName, Map map)
          JDBC 2.0 Returns the value of column @i as a Java object.
 Object CallableStatement.getObject(int i, Map map)
          JDBC 2.0 Returns an object representing the value of OUT parameter @i.
 Object[] Struct.getAttributes(Map map)
          Produce the ordered values of the attributes of the SQL structured type.
 void Connection.setTypeMap(Map map)
          JDBC 2.0  * Install a type-map object as the default type-map for  * this connection.
 

Uses of Map in java.text
 

Methods in java.text that return Map
 Map AttributedCharacterIterator.getAttributes()
          Returns a map with the attributes defined on the current character.
 

Methods in java.text with parameters of type Map
 void AttributedString.addAttributes(Map attributes, int beginIndex, int endIndex)
          Adds a set of attributes to a subrange of the string.
 

Constructors in java.text with parameters of type Map
AttributedString.AttributedString(String text, Map attributes)
          Constructs an AttributedString instance with the given text and attributes.
 

Uses of Map in java.util
 

Subinterfaces of Map in java.util
  SortedMap
          A Map that further guarantees that it will be in ascending key order, sorted according to the natural ordering of its keys (see Comparable), or by a Comparator provided at SortedMap creation time.
 

Classes in java.util that implement Map
  AbstractMap
          This class provides a skeletal implementation of the Map interface, to minimize the effort required to implement this interface.
  HashMap
          Hash table based implementation of the Map interface.
  Hashtable
          This class implements a hashtable, which maps keys to values.
  Properties
          The Properties class represents a persistent set of properties.
  TreeMap
          Red-Black tree based implementation of the SortedMap interface.
  WeakHashMap
          A hashtable-based Map implementation with weak keys.
 

Methods in java.util that return Map
static Map Collections.unmodifiableMap(Map m)
          Returns an unmodifiable view of the specified Map.
static Map Collections.synchronizedMap(Map m)
          Returns a synchronized (thread-safe) Map backed by the specified Map.
 

Methods in java.util with parameters of type Map
 void Hashtable.putAll(Map t)
          Copies all of the mappings from the specified Map to this Hashtable These mappings will replace any mappings that this Hashtable had for any of the keys currently in the specified Map.
 void AbstractMap.putAll(Map t)
          Copies all of the mappings from the specified Map to this Map (optional operation).
 void HashMap.putAll(Map t)
          Copies all of the mappings from the specified Map to this HashMap These mappings will replace any mappings that this HashMap had for any of the keys currently in the specified Map.
static Map Collections.unmodifiableMap(Map m)
          Returns an unmodifiable view of the specified Map.
static Map Collections.synchronizedMap(Map m)
          Returns a synchronized (thread-safe) Map backed by the specified Map.
 void Map.putAll(Map t)
          Copies all of the mappings from the specified Map to this Map (optional operation).
 void TreeMap.putAll(Map map)
          Copies all of the mappings from the specified Map to this TreeMap These mappings will replace any mappings that this TreeMap had for any of the keys currently in the specified Map.
 

Constructors in java.util with parameters of type Map
Hashtable.Hashtable(Map t)
          Constructs a new hashtable with the same mappings as the given Map.
HashMap.HashMap(Map t)
          Constructs a new HashMap with the same mappings as the given Map.
TreeMap.TreeMap(Map m)
          Constructs a new TreeMap containing the same mappings as the given Map, sorted according to the keys' natural order.
 

Uses of Map in java.util.jar
 

Classes in java.util.jar that implement Map
  Attributes
          The Attributes class maps Manifest attribute names to associated string values.
 

Fields in java.util.jar declared as Map
protected  Map Attributes.map
          The attribute name-value mappings.
 

Methods in java.util.jar that return Map
 Map Manifest.getEntries()
          Returns a Map of the entries contained in this Manifest.
 

Methods in java.util.jar with parameters of type Map
 void Attributes.putAll(Map attr)
          Copies all of the attribute name-value mappings from the specified Attributes to this Map.
 


Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.