OpenEdge.Core.Collections.IStringStringMap
- Last Updated: January 15, 2026
- 3 minute read
- OpenEdge
- Documentation
|
Method Summary
| Options | Name | Purpose | |
|---|---|---|---|
| LOGICAL ContainsKey (character) |
/** Indicates whether a map exists for this key
@param character the key value
@return logical True if this key exists */
|
||
| LOGICAL ContainsKey (String) |
/** Returns true if this map contains a mapping for the specified key. */
|
||
| LOGICAL ContainsValue (character) |
/** Indicates whether there is at least one value represented
by the parameter in the map.
@param longchar The value
@return logical True if there is at least one entry with this value */
|
||
| LOGICAL ContainsValue (String) |
/** Returns true if this map maps one or more keys to the specified value.*/
|
||
| LONGCHAR Get (character) |
/** Retrieves the value for a particular key
@param character The key value
@return longchar The associated value */
|
||
| OpenEdge.Core.String Get (String) |
/** Returns the value to which this map maps the specified key.*/
|
||
| LONGCHAR Put (character, longchar) |
/** Adds an entry to the map
@param character The key value
@param longchar The value (may be blank or unknown)
@return longchar The value added (may be blank or unknown) */
|
||
| OpenEdge.Core.String Put (String, String) |
/** Associates the specified value with the specified key in this map (optional operation).*/
|
||
| PutAll (IStringStringMap) |
/** Adds all data from the input map into this map */
|
||
| LONGCHAR Remove (character) |
/** Removes the value for a particular key
@param character The key value
@return longchar The associated value */
|
||
| OpenEdge.Core.String Remove (String) |
/** Removes the mapping for this key from this map if it is present (optional operation).*/
|
Method Detail
LOGICAL ContainsKey (character)
|
||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
LOGICAL ContainsKey (String)
|
||||||||||||||||||||
LOGICAL ContainsValue (character)
|
||||||||||||||||||||
LOGICAL ContainsValue (String)
|
||||||||||||||||||||
LONGCHAR Get (character)
|
||||||||||||||||||||
OpenEdge.Core.String Get (String)
|
||||||||||||||||||||
LONGCHAR Put (character, longchar)
|
||||||||||||||||||||
OpenEdge.Core.String Put (String, String)
|
||||||||||||||||||||
PutAll (IStringStringMap)
|
||||||||||||||||||||
LONGCHAR Remove (character)
|
||||||||||||||||||||
OpenEdge.Core.String Remove (String)
|
||||||||||||||||||||