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

F79659-03

coherence/io/pof/RawYearMonthInterval.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_RAW_YEAR_MONTH_INTERVAL_HPP
00008 #define COH_RAW_YEAR_MONTH_INTERVAL_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/pof/PofIntrinsic.hpp"
00013 
00014 
00015 
00016 COH_OPEN_NAMESPACE3(coherence,io,pof)
00017 
00018 
00019 /**
00020 * Raw POF year-month interval value.
00021 *
00022 * @author jh  2008.04.08
00023 */
00024 class COH_EXPORT RawYearMonthInterval
00025     : public cloneable_spec<RawYearMonthInterval,
00026           extends<Object>,
00027           implements<PofIntrinsic> >
00028     {
00029     friend class factory<RawYearMonthInterval>;
00030 
00031     // ----- constructors ---------------------------------------------------
00032 
00033     protected:
00034         /**
00035         * Construct a raw POF year-month interval value.
00036         *
00037         * @param cYears  the number of years in the year-month interval
00038         * @param cMonths the number of months in the year-month interval
00039         *
00040         * @return the new RawYearMonthInterval
00041         */
00042         RawYearMonthInterval(int32_t cYears, int32_t cMonths);
00043 
00044         /**
00045         * Copy constructor.
00046         */
00047         RawYearMonthInterval(const RawYearMonthInterval& that);
00048 
00049 
00050     // ----- Object interface -----------------------------------------------
00051 
00052     public:
00053         /**
00054         * {@inheritDoc}
00055         */
00056         virtual bool equals(Object::View v) const;
00057 
00058         /**
00059         * {@inheritDoc}
00060         */
00061         virtual size32_t hashCode() const;
00062 
00063         /**
00064         * {@inheritDoc}
00065         */
00066         virtual bool isImmutable() const;
00067 
00068         /**
00069         * {@inheritDoc}
00070         */
00071         virtual TypedHandle<const String> toString() const;
00072 
00073 
00074     // ----- accessors ------------------------------------------------------
00075 
00076     public:
00077         /**
00078         * Determine the number of years in the year-month interval.
00079         *
00080         * @return the number of years in the year-month interval
00081         */
00082         virtual int32_t getYears() const;
00083 
00084         /**
00085         * Determine the number of months in the year-month interval.
00086         *
00087         * @return the number of months in the year-month interval
00088         */
00089         virtual int32_t getMonths() const;
00090 
00091 
00092     // ----- data members ---------------------------------------------------
00093 
00094     protected:
00095         /**
00096         * The number of years in the year-month interval.
00097         */
00098         int32_t m_cYears;
00099 
00100         /**
00101         * The number of months in the year-month interval.
00102         */
00103         int32_t m_cMonths;
00104     };
00105 
00106 COH_CLOSE_NAMESPACE3
00107 
00108 #endif // COH_RAW_YEAR_MONTH_INTERVAL_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.