C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/io/pof/reflect/AbstractPofPath.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_ABSTRACT_POF_PATH_HPP
00008 #define COH_ABSTRACT_POF_PATH_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/pof/PofReader.hpp"
00013 #include "coherence/io/pof/PofWriter.hpp"
00014 #include "coherence/io/pof/PortableObject.hpp"
00015 #include "coherence/io/pof/reflect/PofNavigator.hpp"
00016 #include "coherence/io/pof/reflect/PofValue.hpp"
00017 
00018 COH_OPEN_NAMESPACE4(coherence,io,pof,reflect)
00019 
00020 using coherence::io::pof::PofReader;
00021 using coherence::io::pof::PofWriter;
00022 
00023 
00024 /**
00025 * Abstract base class for static, path-based implementations of the
00026 * PofNavigator interface.
00027 *
00028 * @author as/gm  2009.03.01
00029 * @since Coherence 3.5
00030 */
00031 class COH_EXPORT AbstractPofPath
00032     : public abstract_spec<AbstractPofPath,
00033         extends<Object>,
00034         implements<PofNavigator, PortableObject> >
00035     {
00036     // ----- PofNavigator interface -----------------------------------------
00037 
00038     public:
00039         /**
00040         * {@inheritDoc}
00041         */
00042         virtual PofValue::Handle navigate(PofValue::Handle hValueOrigin) const;
00043 
00044 
00045     // ----- abstract methods -----------------------------------------------
00046 
00047     protected:
00048         /**
00049         * Return a collection of path elements.
00050         *
00051         * @return a collection of path elements
00052         */
00053         virtual Array<int32_t>::View getPathElements() const = 0;
00054     };
00055 
00056 COH_CLOSE_NAMESPACE4
00057 
00058 #endif // COH_ABSTRACT_POF_PATH_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.