All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>, org.opendaylight.yangtools.binding.BindingObject, org.opendaylight.yangtools.binding.DataContainer, org.opendaylight.yangtools.binding.Grouping
All Known Subinterfaces:
MetricPce

@Generated("mdsal-binding-generator") public interface ProcTimeObject extends org.opendaylight.yangtools.binding.Grouping
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;
     }
   }
 }
 
  • Method Summary

    Modifier and Type
    Method
    Description
    Return procTime, or null if it is not present.
    @NonNull ProcTime
    Return procTime, or an empty instance if it is not present.

    Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract

    implementedInterface
  • Method Details

    • getProcTime

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

      @NonNull ProcTime nonnullProcTime()
      Return procTime, or an empty instance if it is not present.
      Returns:
      ProcTime procTime, or an empty instance if it is not present.