Class Duration

    • Constructor Detail

      • Duration

        public Duration()
        Default no-arg constructor
      • Duration

        public Duration​(boolean negative,
                        int aYears,
                        int aMonths,
                        int aDays,
                        int aHours,
                        int aMinutes,
                        double aSeconds)
        Parameters:
        negative -
        aYears -
        aMonths -
        aDays -
        aHours -
        aMinutes -
        aSeconds -
    • Method Detail

      • isNegative

        public boolean isNegative()
      • getYears

        public int getYears()
      • getMonths

        public int getMonths()
      • getDays

        public int getDays()
      • getHours

        public int getHours()
      • getMinutes

        public int getMinutes()
      • getSeconds

        public double getSeconds()
      • setNegative

        public void setNegative​(boolean negative)
        Parameters:
        negative -
      • setYears

        public void setYears​(int years)
        Parameters:
        years -
      • setMonths

        public void setMonths​(int months)
        Parameters:
        months -
      • setDays

        public void setDays​(int days)
        Parameters:
        days -
      • setHours

        public void setHours​(int hours)
        Parameters:
        hours -
      • setMinutes

        public void setMinutes​(int minutes)
        Parameters:
        minutes -
      • setSeconds

        public void setSeconds​(int seconds)
        Deprecated.
        use setSeconds(double) instead
        Parameters:
        seconds -
      • setSeconds

        public void setSeconds​(double seconds)
        Sets the seconds. NOTE: The fractional value of seconds is rounded up to milliseconds.
        Parameters:
        seconds - double
      • toString

        public String toString()
        This returns the xml representation of an xsd:duration object.
        Overrides:
        toString in class Object
      • equals

        public boolean equals​(Object object)
        The equals method compares the time represented by duration object, not its string representation. Hence, a duration object representing 65 minutes is considered equal to a duration object representing 1 hour and 5 minutes.
        Overrides:
        equals in class Object
        Parameters:
        object -
      • compare

        public long compare​(Duration duration)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getAsCalendar

        public Calendar getAsCalendar()
        Returns duration as a calendar. Due to the way a Calendar class works, the values for particular fields may not be the same as obtained through getter methods. For example, if a duration's object getMonths returns 20, a similar call on a calendar object will return 1 year and 8 months.
        Returns:
        Calendar
      • getAsCalendar

        public Calendar getAsCalendar​(Calendar startTime)
        Returns duration as a calendar. Due to the way a Calendar class works, the values for particular fields may not be the same as obtained through getter methods. For example, if a Duration's object getMonths returns 20, a similar call on a Calendar object will return 1 year and 8 months.
        Parameters:
        startTime - Calendar
        Returns:
        Calendar