Oracle® Fusion Middleware C++ API Reference for Oracle Coherence
12c (12.2.1.1.0)

E69640-01

CompositeUpdater Class Reference

#include <coherence/util/extractor/CompositeUpdater.hpp>

List of all members.


Detailed Description

A ValueManipulator implementation based on an extractor-updater pair.

Author:
djl 2008.04.09
See also:
CompositeUpdater

Public Types

typedef spec::Handle Handle
 CompositeUpdater Handle definition.
typedef spec::View View
 CompositeUpdater View definition.
typedef spec::Holder Holder
 CompositeUpdater Holder definition.

Public Member Functions

virtual void update (Object::Handle hTarget, Object::Holder ohValue) const
 
virtual void readExternal (PofReader::Handle hIn)
 
virtual void writeExternal (PofWriter::Handle hOut) const
 
virtual TypedHandle
< const String > 
toString () const
 
virtual
ValueExtractor::View 
getExtractor () const
 Retrieve the ValueExtractor part.
virtual
ValueUpdater::View 
getUpdater () const
 Retrieve the ValueUpdator part.

Protected Member Functions

 CompositeUpdater ()
 Construct an empty CompositeUpdater (necessary for the PortableObject interface).
 CompositeUpdater (String::View vsName)
 Construct a CompositeUpdater for a specified method name sequence.
 CompositeUpdater (ValueExtractor::View vExtractor, ValueUpdater::View vUpdater)
 Construct a CompositeUpdater based on the specified extractor and updater.

Protected Attributes

FinalView
< ValueExtractor > 
f_vExtractor
 The ValueExtractor part.
FinalView< ValueUpdater > f_vUpdater
 The ValueUpdaterr part.

Constructor & Destructor Documentation

CompositeUpdater ( String::View  vsName  )  [protected]

Construct a CompositeUpdater for a specified method name sequence.

For example: "getAddress. setZip" method name will indicate that the "getAddress()" method should be used to extract an Address object, which will then be used by the "setZip(String)" call.

Parameters:
vsName a dot-delimited sequence of N method names which results in a CompositeUpdater that is based on an chain of (N-1) ReflectionExtractor objects and a single ReflectionUpdater.

CompositeUpdater ( ValueExtractor::View  vExtractor,
ValueUpdater::View  vUpdater 
) [protected]

Construct a CompositeUpdater based on the specified extractor and updater.

Note: the extractor and updater here are not symmetrical in nature: the extractor is used to "drill-down" to the target object, while the updater will operate on that extracted object.

Parameters:
vExtractor the ValueExtractor
vUpdater the ValueUpdater


Member Function Documentation

virtual ValueExtractor::View getExtractor (  )  const [virtual]

Retrieve the ValueExtractor part.

Returns:
the ValueExtractor

virtual ValueUpdater::View getUpdater (  )  const [virtual]

Retrieve the ValueUpdator part.

Returns:
the ValueUpdater


The documentation for this class was generated from the following file:
Copyright © 2000, 2016, Oracle and/or its affiliates. All rights reserved.