Interface AvgMinMaxStatsPrecision1

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    public interface AvgMinMaxStatsPrecision1
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Common nodes for recording average, minimum, and maximum values for a These values all have fraction-digits set to 1.

    This class represents the following YANG schema fragment defined in module openconfig-types

     grouping avg-min-max-stats-precision1 {
       leaf avg {
         type decimal64 {
           fraction-digits 1;
         }
       }
       leaf min {
         type decimal64 {
           fraction-digits 1;
         }
       }
       leaf max {
         type decimal64 {
           fraction-digits 1;
         }
       }
     }
     
    The schema path to identify an instance is openconfig-types/avg-min-max-stats-precision1
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable BigDecimal getAvg()
        The arithmetic mean value of the statistic over the sampling period.
        Returns:
        java.math.BigDecimal avg, or null if not present
      • getMin

        @Nullable BigDecimal getMin()
        The minimum value of the statistic over the sampling period
        Returns:
        java.math.BigDecimal min, or null if not present
      • getMax

        @Nullable BigDecimal getMax()
        The maximum value of the statitic over the sampling period
        Returns:
        java.math.BigDecimal max, or null if not present