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

F79659-03

coherence/lang/Size32.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_SIZE32_HPP
00008 #define COH_SIZE32_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 32-bit unsigned value.
00020 *
00021 * @author mf  2011.02.24
00022 */
00023 class COH_EXPORT Size32
00024     : public cloneable_spec<Size32,
00025         extends<Primitive<size32_t> >,
00026         implements<Comparable> >
00027     {
00028     friend class factory<Size32>;
00029 
00030     // ----- constructors ---------------------------------------------------
00031 
00032     private:
00033         /**
00034         * Create a new Size32 instance.
00035         *
00036         * @param n  the value of the new Size32
00037         *
00038         * @return the new Size32
00039         */
00040         Size32(size32_t n);
00041 
00042         /**
00043         * Copy constructor.
00044         */
00045         Size32(const Size32& 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 Size32 objects with an optimization
00062         * that uses cached objects for all relatively-low values.
00063         *
00064         * @param n   an size32_t
00065         *
00066         * @return an Size32 whose value is the passed size32_t
00067         */
00068         static Handle valueOf(size32_t n);
00069 
00070 
00071     // ----- constants ------------------------------------------------------
00072 
00073     public:
00074         /**
00075         * A constant for the minimum representable value.
00076         */
00077         static const size32_t min_value = 0x00000000;
00078 
00079         /**
00080         * A constant for the maximum representable value.
00081         */
00082         static const size32_t max_value = 0xFFFFFFFF;
00083     };
00084 
00085 COH_CLOSE_NAMESPACE2
00086 
00087 #endif // COH_SIZE32_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.