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

F79659-03

coherence/util/AbstractLongArray.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_LONG_ARRAY_HPP
00008 #define COH_ABSTRACT_LONG_ARRAY_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/util/LongArray.hpp"
00013 
00014 COH_OPEN_NAMESPACE2(coherence,util)
00015 
00016 
00017 /**
00018 * Abstract base class for LongArray implementations.
00019 *
00020 * @author js  2008.04.04
00021 */
00022 class COH_EXPORT AbstractLongArray
00023     : public abstract_spec<AbstractLongArray,
00024         extends<Object>,
00025         implements<LongArray> >
00026     {
00027     // ----- LongArray interface --------------------------------------------
00028 
00029     public:
00030         /**
00031         * {@inheritDoc}
00032         */
00033         virtual Object::Holder get(int64_t lIndex) const;
00034 
00035         /**
00036         * {@inheritDoc}
00037         */
00038         virtual int64_t add(Object::Holder ohValue);
00039 
00040         /**
00041         * {@inheritDoc}
00042         */
00043         virtual bool exists(int64_t lIndex) const;
00044 
00045         /**
00046         * {@inheritDoc}
00047         */
00048         virtual Object::Holder remove(int64_t lIndex);
00049 
00050         /**
00051         * {@inheritDoc}
00052         */
00053         virtual bool contains(Object::View vElement) const;
00054 
00055         /**
00056         * {@inheritDoc}
00057         */
00058         virtual void clear();
00059 
00060         /**
00061         * {@inheritDoc}
00062         */
00063         virtual bool isEmpty() const;
00064 
00065         /**
00066         * {@inheritDoc}
00067         */
00068         virtual size32_t getSize() const;
00069 
00070         /**
00071         * {@inheritDoc}
00072         */
00073         virtual int64_t getFirstIndex() const;
00074 
00075         /**
00076         * {@inheritDoc}
00077         */
00078         virtual int64_t getLastIndex() const;
00079 
00080 
00081     // ----- Object interface -----------------------------------------------
00082 
00083     public:
00084         /**
00085         * {@inheritDoc}
00086         */
00087         virtual TypedHandle<const String> toString() const;
00088 
00089         /**
00090         * {@inheritDoc}
00091         */
00092         virtual bool equals(Object::View v) const;
00093 
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual size32_t hashCode() const;
00098     };
00099 
00100 COH_CLOSE_NAMESPACE2
00101 
00102 #endif // COH_ABSTRACT_LONG_ARRAY_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.