00001
00002
00003
00004
00005
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
00019
00020
00021
00022 class COH_EXPORT AbstractLongArray
00023 : public abstract_spec<AbstractLongArray,
00024 extends<Object>,
00025 implements<LongArray> >
00026 {
00027
00028
00029 public:
00030
00031
00032
00033 virtual Object::Holder get(int64_t lIndex) const;
00034
00035
00036
00037
00038 virtual int64_t add(Object::Holder ohValue);
00039
00040
00041
00042
00043 virtual bool exists(int64_t lIndex) const;
00044
00045
00046
00047
00048 virtual Object::Holder remove(int64_t lIndex);
00049
00050
00051
00052
00053 virtual bool contains(Object::View vElement) const;
00054
00055
00056
00057
00058 virtual void clear();
00059
00060
00061
00062
00063 virtual bool isEmpty() const;
00064
00065
00066
00067
00068 virtual size32_t getSize() const;
00069
00070
00071
00072
00073 virtual int64_t getFirstIndex() const;
00074
00075
00076
00077
00078 virtual int64_t getLastIndex() const;
00079
00080
00081
00082
00083 public:
00084
00085
00086
00087 virtual TypedHandle<const String> toString() const;
00088
00089
00090
00091
00092 virtual bool equals(Object::View v) const;
00093
00094
00095
00096
00097 virtual size32_t hashCode() const;
00098 };
00099
00100 COH_CLOSE_NAMESPACE2
00101
00102 #endif // COH_ABSTRACT_LONG_ARRAY_HPP