Interface ProcTimeObject

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

    @Generated("mdsal-binding-generator")
    public interface ProcTimeObject
    extends org.opendaylight.yangtools.yang.binding.DataObject
    The PROC-TIME object is used to report various processing time related metrics.

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

     grouping proc-time-object {
       container proc-time {
         uses object;
         leaf estimated {
           type boolean;
         }
         leaf current-proc-time {
           type uint32;
         }
         leaf min-proc-time {
           type uint32;
         }
         leaf max-proc-time {
           type uint32;
         }
         leaf average-proc-time {
           type uint32;
         }
         leaf variance-proc-time {
           type uint32;
         }
       }
     }
     
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
        YANG identifier of the statement represented by this class.
    • Method Detail

      • implementedInterface

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

        ProcTime getProcTime()
        Return procTime, or null if it is not present.
        Returns:
        ProcTime procTime, or null if it is not present.