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_DAY_TIME_INTERVAL_HPP 00008 #define COH_RAW_DAY_TIME_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 immutable POF day-time interval value. 00021 * 00022 * @author jh 2008.04.08 00023 */ 00024 class COH_EXPORT RawDayTimeInterval 00025 : public cloneable_spec<RawDayTimeInterval, 00026 extends<Object>, 00027 implements<PofIntrinsic> > 00028 { 00029 friend class factory<RawDayTimeInterval>; 00030 00031 // ----- constructors --------------------------------------------------- 00032 00033 protected: 00034 /** 00035 * Construct a raw POF day-time interval value. 00036 * 00037 * @param cDays the number of days in the day-time interval 00038 * @param cHours the number of hours in the day-time interval 00039 * @param cMinutes the number of minutes in the day-time interval 00040 * @param cSeconds the number of seconds in the day-time interval 00041 * @param cNanos the number of nanoseconds in the day-time interval 00042 * 00043 * @return the new RawDayTimeInterval 00044 */ 00045 RawDayTimeInterval(int32_t cDays, int32_t cHours, int32_t cMinutes, 00046 int32_t cSeconds, int32_t cNanos); 00047 00048 /** 00049 * Copy constructor. 00050 */ 00051 RawDayTimeInterval(const RawDayTimeInterval& that); 00052 00053 00054 // ----- Object interface ----------------------------------------------- 00055 00056 public: 00057 /** 00058 * {@inheritDoc} 00059 */ 00060 virtual bool equals(Object::View v) const; 00061 00062 /** 00063 * {@inheritDoc} 00064 */ 00065 virtual size32_t hashCode() const; 00066 00067 /** 00068 * {@inheritDoc} 00069 */ 00070 virtual bool isImmutable() const; 00071 00072 /** 00073 * {@inheritDoc} 00074 */ 00075 virtual TypedHandle<const String> toString() const; 00076 00077 00078 // ----- accessors ------------------------------------------------------ 00079 00080 public: 00081 /** 00082 * Determine the number of days in the day-time interval. 00083 * 00084 * @return the number of days in the day-time interval 00085 */ 00086 virtual int32_t getDays() const; 00087 00088 /** 00089 * Determine the number of hours in the day-time interval. 00090 * 00091 * @return the number of hours in the day-time interval 00092 */ 00093 virtual int32_t getHours() const; 00094 00095 /** 00096 * Determine the number of minutes in the day-time interval. 00097 * 00098 * @return the number of minutes in the day-time interval 00099 */ 00100 virtual int32_t getMinutes() const; 00101 00102 /** 00103 * Determine the number of seconds in the day-time interval. 00104 * 00105 * @return the number of seconds in the day-time interval 00106 */ 00107 virtual int32_t getSeconds() const; 00108 00109 /** 00110 * Determine the number of nanoseconds in the day-time interval. 00111 * 00112 * @return the number of nanoseconds in the day-time interval 00113 */ 00114 virtual int32_t getNanos() const; 00115 00116 00117 // ----- data members --------------------------------------------------- 00118 00119 protected: 00120 /** 00121 * The number of days in the day-time interval. 00122 */ 00123 int32_t m_cDays; 00124 00125 /** 00126 * The number of hours in the day-time interval. 00127 */ 00128 int32_t m_cHours; 00129 00130 /** 00131 * The number of minutes in the day-time interval. 00132 */ 00133 int32_t m_cMinutes; 00134 00135 /** 00136 * The number of seconds in the day-time interval. 00137 */ 00138 int32_t m_cSeconds; 00139 00140 /** 00141 * The number of nanoseconds in the day-time interval. 00142 */ 00143 int32_t m_cNanos; 00144 }; 00145 00146 COH_CLOSE_NAMESPACE3 00147 00148 #endif // COH_RAW_DAY_TIME_INTERVAL_HPP