Oracle Coherence for C++ API
Release 3.7.1.0
E22845-01
#include <coherence/util/ConverterCollections.hpp>
Inherits WrapperCollections::AbstractWrapperEntry.
A ConverterEntry views an underlying Map::Entry through a Converter.
Public Types |
||||
| typedef spec::Handle | Handle | |||
| ConverterEntry Handle definition. | ||||
| typedef spec::View | View | |||
| ConverterEntry View definition. | ||||
| typedef spec::Holder | Holder | |||
| ConverterEntry Holder definition. | ||||
Public Member Functions |
||||
| virtual Object::View | getKey () const | |||
Return the key corresponding to this entry.
|
||||
| virtual Object::Holder | getValue () const | |||
Return the value corresponding to this entry.
|
||||
| virtual Object::Holder | setValue (Object::Holder ohValue) | |||
Update the value corresponding to this entry.
|
||||
| virtual bool | equals (Object::View that) const | |||
| virtual size32_t | hashCode () const | |||
| Return a hash code value for the Object.
This method is supported for the benefit of hash-based containers. The general contract of
The default implementation is identity based.
|
||||
| virtual void | toStream (std::ostream &out) const | |||
| Output a human-readable description of this Object to the given stream.
coherence::lang::operator<<(std::ostream, Object::View) is defined and will call into the toStream method, to output Objects. If a managed String object is desired, the COH_TO_STRING macro can be used to build up a String from streamable contents. Object::View vKey = ... Object::View vValue = ... std::cout << vKey << " = " << vValue << std::endl; String::Handle hs = COH_TO_STRING(vKey << " = " << vValue);
|
||||
Protected Member Functions |
||||
| ConverterEntry (Map::Entry::Handle hMapDelegate, EntryConverter::View vConvUp, EntryConverter::View vConvDown) | ||||
| Create a WrapperCollections::AbstractWrapperEntry which delegates to the specified Map::Entry. | ||||
| ConverterEntry (Map::Entry::View vMapDelegate, EntryConverter::View vConvUp, EntryConverter::View vConvDown) | ||||
| Create a WrapperCollections::AbstractWrapperEntry which delegates to the specified Map::Entry. | ||||
| ConverterEntry (const ConverterEntry &that) | ||||
| Copy constructor. | ||||
Protected Attributes |
||||
| FinalView < EntryConverter > |
m_vConvUp | |||
| The Converter from the underlying Entry. | ||||
| FinalView < EntryConverter > |
m_vConvDown | |||
| The Converter from the underlying Entry. | ||||
| ConverterEntry | ( | Map::Entry::Handle | hMapDelegate, | |
| EntryConverter::View | vConvUp, | |||
| EntryConverter::View | vConvDown | |||
| ) | [protected] |
Create a WrapperCollections::AbstractWrapperEntry which delegates to the specified Map::Entry.
| hMapEntry | a handle to the specified Map::Entry | |
| vConvUp | the EntryConverter from the underlying Map | |
| vConvDown | the EntryConverter to the underlying Map |
| ConverterEntry | ( | Map::Entry::View | vMapDelegate, | |
| EntryConverter::View | vConvUp, | |||
| EntryConverter::View | vConvDown | |||
| ) | [protected] |
Create a WrapperCollections::AbstractWrapperEntry which delegates to the specified Map::Entry.
| vMapEntry | a view of the specified Map::Entry | |
| vConvUp | the EntryConverter from the underlying Map | |
| vConvDown | the EntryConverter to the underlying Map |
The documentation for this class was generated from the following file: