Interface MinMaxTime

    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        Class<? extends MinMaxTime> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getMinTime

        Timeticks64 getMinTime()
        Return minTime, or null if it is not present.
             
                 The absolute time at which the minimum value occurred. The value is the
                 timestamp in nanoseconds relative to the Unix Epoch (Jan 1, 1970 00:00:00 UTC).
             
         
        Returns:
        Timeticks64 minTime, or null if it is not present.
      • requireMinTime

        default @NonNull Timeticks64 requireMinTime()
        Return minTime, guaranteed to be non-null.
             
                 The absolute time at which the minimum value occurred. The value is the
                 timestamp in nanoseconds relative to the Unix Epoch (Jan 1, 1970 00:00:00 UTC).
             
         
        Returns:
        Timeticks64 minTime, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if minTime is not present
      • getMaxTime

        Timeticks64 getMaxTime()
        Return maxTime, or null if it is not present.
             
                 The absolute time at which the maximum value occurred. The value is the
                 timestamp in nanoseconds relative to the Unix Epoch (Jan 1, 1970 00:00:00 UTC).
             
         
        Returns:
        Timeticks64 maxTime, or null if it is not present.
      • requireMaxTime

        default @NonNull Timeticks64 requireMaxTime()
        Return maxTime, guaranteed to be non-null.
             
                 The absolute time at which the maximum value occurred. The value is the
                 timestamp in nanoseconds relative to the Unix Epoch (Jan 1, 1970 00:00:00 UTC).
             
         
        Returns:
        Timeticks64 maxTime, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if maxTime is not present