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

F79659-03

coherence/lang/Size64.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_SIZE64_HPP
00008 #define COH_SIZE64_HPP
00009 
00010 #include "coherence/lang/compatibility.hpp"
00011 
00012 #include "coherence/lang/Primitive.hpp"
00013 #include "coherence/lang/TypedHandle.hpp"
00014 
00015 COH_OPEN_NAMESPACE2(coherence,lang)
00016 
00017 
00018 /**
00019 * An immutable 64-bit unsigned value.
00020 *
00021 * @author mf  2011.02.24
00022 */
00023 class COH_EXPORT Size64
00024     : public cloneable_spec<Size64,
00025         extends<Primitive<size64_t> >,
00026         implements<Comparable> >
00027     {
00028     friend class factory<Size64>;
00029 
00030     // ----- constructors ---------------------------------------------------
00031 
00032     private:
00033         /**
00034         * Create a new Size64 instance.
00035         *
00036         * @param n  the value of the new Size64
00037         *
00038         * @return the new Size64
00039         */
00040         Size64(size64_t n);
00041 
00042         /**
00043         * Copy constructor.
00044         */
00045         Size64(const Size64& that);
00046 
00047 
00048     // ----- Comparable interface -------------------------------------------
00049 
00050     public:
00051         /**
00052         * {@inheritDoc}
00053         */
00054         virtual int32_t compareTo(Object::View v) const;
00055 
00056 
00057     // ----- static methods -------------------------------------------------
00058 
00059     public:
00060         /**
00061         * Factory method to produce Size64 objects with an optimization
00062         * that uses cached objects for all relatively-low values.
00063         *
00064         * @param n   an size64_t
00065         *
00066         * @return an Size64 whose value is the passed size64_t
00067         */
00068         static Handle valueOf(size64_t n);
00069 
00070 
00071     // ----- constants ------------------------------------------------------
00072 
00073     public:
00074         /**
00075         * A constant for the minimum representable value.
00076         */
00077         static const size64_t min_value = 0x0;
00078 
00079         /**
00080         * A constant for the maximum representable value.
00081         */
00082         static const size64_t max_value = size64_t(0xFFFFFFFF) << 32 | size64_t(0xFFFFFFFF);
00083     };
00084 
00085 COH_CLOSE_NAMESPACE2
00086 
00087 #endif // COH_SIZE64_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.