Oracle Fusion Middleware
Java API Reference for Oracle PDK Java
11g Release 1 (11.1.1)
E10691-01

oracle.portal.utils.v2
Interface ParameterMap

All Known Implementing Classes:
SimpleParameterMap

Deprecated. use Java 2 collection class such as HashMap

public interface ParameterMap

A ParameterMap contains a set of parameters whose values are Objects mapped to String names.


Method Summary
 boolean containsParameter(java.lang.String parameterName)
          Deprecated. Returns true if this ParameterMap object contains the specified String as a parameter name.
 java.util.Enumeration getParameterNames()
          Deprecated. Returns an Enumeration of the parameter names belonging to this ParameterMap object, this may then be used to fetch the parameters sequentially.
 java.lang.Object getParameterValue(java.lang.String parameterName)
          Deprecated. Gets the value of the parameter with the given name.
 

Method Detail

getParameterValue

java.lang.Object getParameterValue(java.lang.String parameterName)
Deprecated. 
Gets the value of the parameter with the given name. If either the name or parameter does not exist, null is returned.

Parameters:
parameterName - the parameter name.
Returns:
the parameter with given name.

getParameterNames

java.util.Enumeration getParameterNames()
Deprecated. 
Returns an Enumeration of the parameter names belonging to this ParameterMap object, this may then be used to fetch the parameters sequentially.

Returns:
an Enumeration of the parameter names.

containsParameter

boolean containsParameter(java.lang.String parameterName)
Deprecated. 
Returns true if this ParameterMap object contains the specified String as a parameter name.

Parameters:
parameterName - parameter name to search for.
Returns:
true if the give name is found, false otherwise.

Oracle Fusion Middleware
Java API Reference for Oracle PDK Java
11g Release 1 (11.1.1)
E10691-01

Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved.