Mendix Runtime
Documentation for the Mendix Runtime Environment API
com.mendix.systemwideinterfaces.connectionbus.requests.IParameterMap Interface Reference

List of all members.

Public Member Functions

abstract void put (String name, Object value)
abstract void putRange (String name, Object start, Object end)
abstract void putCollection (String name, List< Object > values)

Detailed Description

A ParameterMap can be used to define the values for parameters of an query. Call IGetRequest.createParameterMap() to create an empty ParameterMap. To add a ParameterMap to a request, call IGetRequest.setParameters(..).


Member Function Documentation

abstract void com.mendix.systemwideinterfaces.connectionbus.requests.IParameterMap.put ( String  name,
Object  value 
) [pure virtual]

This method can be used to add a single value parameter.

Parameters:
nameThe name of the parameter, without the @ sign.
valueThe value of the parameter.
abstract void com.mendix.systemwideinterfaces.connectionbus.requests.IParameterMap.putCollection ( String  name,
List< Object >  values 
) [pure virtual]

This method can be used to add a collection of values or ranges. A range can be defined by an array of two items.

Parameters:
nameThe name of the parameter, without the @ sign.
valuesThe collection of values or ranges for this parameter.
abstract void com.mendix.systemwideinterfaces.connectionbus.requests.IParameterMap.putRange ( String  name,
Object  start,
Object  end 
) [pure virtual]

This method can be used to add a range parameter.

Parameters:
nameThe name of the parameter, without the @ sign.
startThe start value of the parameter.
endThe end value of the parameter.

The documentation for this interface was generated from the following file: